/* Recipe pages */
.header-food-page {
    font-size: 50px;
    margin: auto 0px;
    text-align: center;
    padding: 10px;
}

.recipe-page-images {
    display: block;
    width: 95%;
    height: auto;
    align-self: center;
    margin: 10px auto;
    box-shadow: 0px 0px 15px 5px rgb(122, 122, 122);
    border-radius: 5%;
}

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

    /* Recipe titles */
    #cheese-burger-food-page-title {
        color: brown;
    }

    #bbq-ribs-food-page-title {
        color: darkred;
    }

    #bacon-hot-dog-food-page-title {
        color: tan;
    }

    #pepperoni-pizza-food-page-title {
        color: rgb(189, 18, 18);
    }

    #lemonade-food-page-title {
        color: rgb(255, 241, 112);
    }

    #coconut-food-page-title {
        color: rgb(102, 70, 0);
    }

    #strawberry-milkshake-food-page-title {
        color: palevioletred;
    }

    #apple-juice-food-page-title {
        color: rgb(255, 153, 0);
    }

    /* Main Dishes */
    .main-dish-page-description, .food-page-ingredients-steps {
    background-color: rgb(235, 227, 135);
    margin-left: 2.5%;
    margin-right: 2.5%;
    margin-top: 25px;
    border: 2px solid rgb(235, 178, 32);
    padding-left: 10px;
    box-shadow: 0px 0px 20px 1.5px rgb(235, 178, 32);
    border-radius: 15px;
    }

    .main-dish-page-description h2 {
        margin: 15px;
    }

    .main-dish-page-description p {
        margin: 15px;
    }

    .food-page-ingredients-steps-title-list {
        margin: 15px;
    }

    .main-dish-home-button-styling {
    background-color: rgb(255, 252, 215);
    border-radius: 10px;
    border: 2px solid rgb(235, 178, 32);
    color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 25px 0px 10px 0px;
    cursor: pointer;
    transition-duration: 0.6s;
    }

    .main-dish-home-button-styling:hover {
    background-color: rgb(235, 227, 135);
    color: black;
    box-shadow: 0px 0px 20px 1.5px rgb(235, 178, 32);
    }

    /* Drinks */
    .drink-page-description, .drink-page-ingredients-steps {
    background-color: skyblue;
    margin-left: 2.5%;
    margin-right: 2.5%;
    margin-top: 25px;
    border: 2px solid lightseagreen;
    padding-left: 10px;
    box-shadow: 0px 0px 20px 1.5px lightseagreen;
    border-radius: 15px;
    }

    .drink-page-description h2 {
        margin: 15px;
    }

    .drink-page-description p {
        margin: 15px;
    }

    .drink-page-ingredients-steps-title-list {
        margin: 15px;
    }

    .drink-home-button-styling {
    background-color: rgb(215, 244, 255);
    border: 2px solid lightseagreen;
    border-radius: 10px;
    color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 25px 0px 10px 0px;
    cursor: pointer;
    transition-duration: 0.6s;
    }

    .drink-home-button-styling:hover {
    background-color: rgb(74, 204, 255);
    color: black;
    box-shadow: 0px 0px 20px 1.5px lightseagreen;
    }