.transition__div {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1a224c;
    z-index: 9999;
    transition: left 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.transition__div.active {
    left: 0;
}
main {
    width: 100%;
    padding: 3rem 30rem;
}
.title {
    color: #004286;
    font-size: 4rem;
}
.recipeDiv {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    padding: 4rem 2rem;
    border-top: solid #004286 2px;
}
.last {
    border-bottom: solid #004286 2px;
}
.textDiv a {
    text-decoration: none;
}
.recipeDiv h2 {
    color: #3776A1;
    font-size: 2.2rem;
    margin-top: 0;
}
.recipeDiv h3 {
    color: #888;
    font-weight: 500;
}
.recipeDiv p {
    color: #000;
    font-weight: 300;
    margin-bottom: 0;
    font-size: 1.1rem;
}
.picDiv {
    width: 20%;
    margin-right: 2rem;
    background-size: cover;
    background-position: center;
}
#steakPic {
    background: url("/img/IMG_7582.jpeg");
    background-size: cover;
    background-position: center;
}
#friedRice {
    background: url("/img/IMG_0070.JPG");
    background-size: cover;
    background-position: center;
}
#fusionMince {
    background: url("/img/IMG_0057.JPG");
    background-size: cover;
    background-position: center;
}
#beefStewPic {
    background: url("/img/IMG_0149.JPG");
    background-size: cover;
    background-position: center;
}
.textSect {
    width: 80%;
}
@media screen and (max-width: 1600px) {
    main {
        padding: 3rem 20rem;
    }
    .picDiv {
        width: 35%;
    }
    .textSect {
        width: 65%;
    }
} 
@media screen and (max-width: 1200px) {
    main {
        padding: 3rem 10rem;
    }
    .title {
        font-size: 3rem;
    }
    .recipeDiv {
        padding: 2rem 1.5rem;
    }
    .recipeDiv h2 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}
.recipeDiv h3, .recipeDiv p {
    font-size: 1rem;
}
.picDiv {
    width: 30%;
    margin-right: 1rem;
}
.textSect {
    width: 70%;
}
}
@media screen and (max-width: 800px) {
    main {
        padding: 2rem 1rem;
    }
    .title {
        font-size: 2.5rem;
    }
    .recipeDiv h2 {
    font-size: 1.7rem;
}
.recipeDiv h3, .recipeDiv p {
    font-size: 0.8rem;
}
.picDiv {
    width: 20%;
}
.textSect {
    width: 80%;
}
}
@media screen and (max-width: 500px) {
    .title {
        font-size: 2.3rem;
    }
    .recipeDiv {
        padding: 1rem 0.75rem;
    }
    .recipeDiv h2 {
    font-size: 1.5rem;
}
.recipeDiv h3 {
    display: none;
}
.recipeDiv p {
    font-size: 1rem;
}
.picDiv {
    width: 50%;
}
.textSect {
    width: 50%;
}
}