@import url('https://fonts.googleapis.com/css2?family=Sono:wght@400;500;600&display=swap');

* {
    font-family: 'Sono', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


/*
homepage 
*/

#homepage {
    background-color: #faf0e6;
    background-size: cover;
    background-position: bottom;
    margin-top: -100px;
}

.ing-container {
    background-color: #eed9c4;
    border-radius: 10px;
}

.homepage {
    height: 92vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.homepage h1, .homepage p{
    margin-bottom: 10px;
}

.homepage h1 {
    font-size: 60px;
    margin-top: 100px;
    color: white;
    background-color: rgba(59, 56, 56, 0.5);
    border-radius: 10px;
    padding: 0 20px;
}

.homepage p {
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    margin-top: 50px;
    max-width: 800px;
    line-height: 30px;
    color: white;
    letter-spacing: 3px;
    background-color: rgba(59, 56, 56, 0.4);
    border-radius: 10px;
}

.homepage-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage-img {
    max-width: 350px;
    max-height: 350px;
    margin-left: 20px;
    border-radius: 10px;
}

/* ingredients section */
#ingredients {
    padding: 40px 0;
    background-color: #fff;
}

.ing-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: right;
    padding-right: 10px;
}

.ing-heading h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.ing-heading ul {
    list-style-type: none;
    padding: 0;
}

.ing-heading li {
    font-size: 22px;
    margin-bottom: 10px;
}

.ing-heading {
    padding-right: 50px;
    padding-bottom: 25px;
}
.ing-content {
    text-align: left;
    padding-right: 200px;
}

.ing-img {
    height: 60%;
    width: 60%;
    padding-left: 30px;
    padding-top: 30px;
    border-radius: 10px;
}

/* instructions section */
.instructions {
    padding: 40px 0;
    background-color: #f0f0f0;
}

.ins-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ins-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.ins-container ol {
    list-style-type: decimal;
    padding-left: 20px;
    text-align: left;
}

.ins-container li {
    font-size: 18px;
    margin-bottom: 10px;
}

/* 
footer
*/

footer {
    background: rgba(45, 45, 45, 0.8);
    width: 100vw;
    height: auto;
    padding-top: 15px;
    color: white;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 50px;
}
.footer-content p {
    max-width: 500px;
    margin: 5px auto;
    line-height: 28px;
    font-size: 14px;
}

.footer-socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0 0px 0;
}

.footer-socials li {
    margin: 0 10px;
}

.footer-socials a {
    text-decoration: none;
    color: white;
    font-size: 30px;
}

.footer-socials a:hover i {
    color: rgb(246, 172, 0);
}

.footer-bottom p {
    font-size: 14px;
    word-spacing: 2px;
    text-align: center;
    padding: 20px 0 20px;
}

.footer-button {
    background-color: rgba(45, 45, 45, 0.05);
    border: none;
    color: white;
    font-size: 34px;
    height: 35px;
    width: 45px;
    transition: 0.6s;
    border-radius: 16px;
}

.footer-button:hover {
    background-color: rgb(246, 172, 0);
    color: black;
}

.footer-button:active {
    background-color: white;
    color: rgb(246, 172, 0);
}

/*
footer
*/