* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "Montserrat", sans-serif;
}

body {
    padding: 80px 80px;
}

h1 {
    text-align: center;
    margin-bottom: 24px;
}

.container-imagem {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.container-imagem img {
    border: 3px solid black;
    border-radius: 15px;
}

.container-tempo {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.container-tempo li {
    background-color: #c1c1c1;
    padding: 15px;
    width: fit-content;
    list-style: none;
    border-radius: 10px;
    border: 2px solid black;
    font-size: 20px;
    font-weight: bold;
}

.paragrafo {
    text-align: justify;
    margin-bottom: 40px;
}

.container-ingredientes li {
    background-color: #c1c1c1;
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 10px;
    gap: 20px;
    font-weight: bold;
}

.container-utensilios li {
    display: flex;
    align-items: center;
    list-style: none;
    background-color: #c1c1c1;
    margin-bottom: 30px;
    padding: 10px;
    gap: 20px;
    font-weight: bold;
}

a {
    text-decoration: none;
    color: white;
    width: fit-content;
    background-color: #ffbf49;
    padding: 20px 50px;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 50px;
    box-shadow: 5px 5px 15px black;
}