:root{
    --imageWidth: 400px;
}
#recipeContent{
    margin: 50px var(--navbar-margin);
    display: flex;
    justify-content: space-between;
    flex-wrap: none;
    margin-bottom: 150px;
}
.recipeImage{
    width: var(--imageWidth);
    border-radius: 15px;
}
#portraitImgOrientation{
    display: none;
}
#recipeName{
    font-size: 4.2rem;
    font-family: "source-serif-pro-semibold";
    color: var(--font-color);
}
#createdBy{
    margin-top: 10px;
    font-size: 1.9rem;
    color: var(--font-color);
}
#dateCreated{
    margin-top: 5px;
    font-size: 1.5rem;
    color: var(--font-color);
}
#ingredientTitle, #directionsTitle, #notesTitle{
    font-size: 3rem;
    color: var(--font-color);
}
#ingredientsBox{
    margin-top: 20px;
}
#directionsBox, #notesBox{
    margin-top: 50px;
}
#ingredients, #directions, #notes{
    margin-top: 20px;
    font-size: 1.9rem;
}
#ingredients p, #directions p, #notes p{
    margin-top: 20px;
    color: var(--font-color);
    max-width: 80ch;
}
#servingSize{
    font-family: "futura-light";
    color: var(--background);
    font-size: 1rem;
    margin-top: 100px;
    background-color: var(--font-color);
    width: max-content;
    padding: 5px 10px;
    letter-spacing: 1px;
}
#servingSize h2{
    font-family: 'futura-light', sans-serif;
}
#lastUpdated{
    margin-top: 80px;
    color: var(--font-color);
    font-size: 1.6rem;
}
@media (max-width: 1000px){
    #landscapeImgOrientation{
        display: none;
    }
    #portraitImgOrientation{
        display: block;
        margin-top: 50px;
    }
    #recipeContent{
        margin-top: 0px;
    }
    #servingSize{
        margin-top: 50px;
    }
    .recipeImage{
        width: 70%;
    }
    #ingredients, #directions, #notes{
        font-size: 1.8rem;
    }
}
@media (max-width: 900px){
    .recipeImage{
        width: 80%;
    }
}
@media (max-width: 650px){
    .recipeImage{
        width: 100%;
    }
    #ingredients, #directions, #notes{
        font-size: 1.9rem;
    }
}
@media (max-width: 650px){
    #recipeName{
        font-size: 3.8rem;
    }
}