html {
    height: 100%;
}

body {
    font-family: sans-serif;
    
    margin: 0;
    padding: 0;
    
    height: 100%;
}

.body-home {
    background-image: url('images/black%20background.jpg');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover
}

.body-meals {
    background-image: url('images/old-wooden-texture-background-vintage.webp');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover
}

/*########## HEADER ##########*/

.header {
    background-color: #2196f3;

    width: 100%;
    height: 50px;
    top: 0;

    position: fixed;
    overflow: hidden;
    text-align: center;
}

.header i {
    float: left;
    padding: 17px 0px 0px 17px;
    color: #ffffff;
}

.header img {
    width: 250px;
    padding-top: 2px;
    padding-bottom: 17px;
    padding-right: 25px;
}


/*########## HOME PAGE ##########*/

#home-logo-img {
    width: 500px;
    display: block;
    margin: auto;
    padding: 25px 10px 10px 10px;
}

#home-logo-text {
    width: 250px;
    display: block;
    margin: auto;
    padding: 25px;
}

/*##### HOME PAGE MENU #####*/

.home-menu-item {
    text-decoration: none;
    text-transform: uppercase;
    
    color: white;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    border: 5px solid white;
    
    display: block;
    margin: auto;
    margin-bottom: 10px;
    width: 80%
}

/*########## MEALS PAGE ##########*/

#meals {
    padding-top: 50px;
}

/*##### MEALS PAGE MENU #####*/

.meals-list a {
    text-decoration: none;
}

.meals-list-item {
    border: 5px solid #1a1a1a;
    margin: 10px;
}

.meals-list-item h1 {
    font-weight: bold;
    font-size: 20px;
    color:#1a1a1a;
    padding-left: 10px;
}

.meals-list-item i {
    float: right;
    color: #1a1a1a;
    padding-right: 20px;
}

.meals-list-item p {
    font-size: 15px;
    font-style: italic;
    color: whitesmoke;
    margin-top: -7px;
    padding-left: 10px;
}

/*########## INFORMATION PAGE ##########*/

#information {
    padding-top: 50px;
}

/*##### INFORMATION DETAILS #####*/

.information-details img {
    width: 100%;
}

.information-details h1 {
    font-size: 25px;
    text-align: center;
    border: 5px solid #1a1a1a;
    margin: 10px;
    padding: 5px;
}

.information-details h2 {
    font-size: 20px;
    text-align: left;
    margin: 0;
    margin-left: 10px;
}

.information-details-info {
    margin-left: 25px;
    margin-right: 25px;
}

.information-details-info p {
    font-size: 15px;
    display: inline-block;
}

.recipe-details-ingridients label {
    line-height: 25px;
    margin-left: 10px;
}

textarea{
    width: 100%;
    height: 65px;
    margin: 15px 0;
    border: 3px solid #1a1a1a;
} 

.body-meals h3 {
    text-align: center;
    color: whitesmoke;
    font-size: 50px;
}

.body-meals p {
    text-align: start;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    color: #ffffff;
}

.button{
    display: block;
    width: 100%;
    background-color: rgb(73, 149, 199);
    text-decoration: none;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0;
    padding: 8px 0;
}

/*########## RESPONSIVE LAYOUT ##########*/

@media only screen and (main-width: 600px) {
    #meals {
        width: 80%;
        margin: auto;
    }
    #information {
        width: 80%;
        margin: auto;
    }
}

@media only screen and (main-width: 1000px) {
    #meals {
        width: 60%;
        margin: auto;
    }
    #information {
        width: 60%;
        margin: auto;
    }
}

@media only screen and (main-width: 1500px) {
    #meals {
        width: 40%;
        margin: auto;
    }
    #information {
        width: 40%;
        margin: auto;
    }
}

@media only screen and (main-width: 720px) {
    .body-home {
        background-image: url('images/old-wooden-texture-background-vintage.webp');
    }
    .body-meals {
        background-image: url('images/black\ background.jpg');
    }
}