body {
    font-size: 10px;
    font-family: "Rubik", sans-serif;
    background-color: #ffe0b2;
}
#colorstrip {
    background-color: orange;
    height: 1.5rem;
    width: 100%;
    position: fixed;
    box-shadow: 1px 1px 9px black;
    z-index: 1;
}
header {
    background-image: url(../img/maindish.png);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.h1 {
    font-size: 4rem;
    color: azure;
    font-family: "Chewy", system-ui;
    text-shadow: 1px 1px 9px black,
                 -1px -1px 9px black;
    transition: 0.5s ease-in-out, color 0.5s ease-in-out;
}
h2 {
   font-size: 2rem;
    color: azure;
    font-family: "Chewy", system-ui; 
    margin-top: 1rem;
    text-shadow: 1px 1px 9px black,
                 -1px -1px 9px black;
                 padding: 5px;
}
.recipeintro {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 5px;
    
}
.bgstory {
    background-color: orange;
    border-radius: 10px;
    padding: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: solid 2px azure;
    box-shadow: 1px 1px 9px black,
                -1px -1px 9px black;
}
.ingredients {
     background-color: orange;
    border-radius: 10px;
    padding: 5px;
    border: solid 2px azure;
    box-shadow: 1px 1px 9px black,
                -1px -1px 9px black;
}
.introp {
    font-size: 1rem;
    margin: 5px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 40px;
}

.ingredientlist {
    width: fit-content;
    margin: 0 auto 40px;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 40px;
    list-style: square;
    text-align: left;
}
.stp1 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}
.stepspan {
    color: azure;
    font-size: 1.5rem;
    text-shadow: 1px 1px 9px black,
                 -1px -1px 9px black;
}

.figcap1, .figcap2, .figcap3 {
   font-size: 1rem;
   font-weight: 600;
   line-height: 1.5; 
}
.process {
    text-align: center;
    background-color: orange;
    padding: 5px;
    max-width: 800px;
    margin: 1rem;
    border-radius: 10px;
    border: solid 2px azure;
    box-shadow: 1px 1px 9px black,
                -1px -1px 9px black;
}
.bowl1, .bowl2 {
    height: auto;
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 10px;
    display: block;
    box-shadow: 2px 2px 9px black,
                -2px -2px 9px black;
}
.baked {
  height: auto;
    width: 100%;
    margin-top: 1rem;
    border-radius: 10px;
    display: block;
    box-shadow: 2px 2px 9px black,
                -2px -2px 9px black;  
    transform: rotate(-1.5deg);
}
.process figure {
    max-width: 280px;
    margin: 1.5rem auto;
}
.addnotes {
    background-color: orange;
    border-radius: 10px;
    text-align: center;
    padding: 5px;
    margin: 1rem;
    border: solid 2px azure;
    box-shadow: 1px 1px 9px black,
                -1px -1px 9px black;
    
    max-width: 900px;
}
.addnotes .notes {
    line-height: 2;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid azure;
}
.addnotes .notesa {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    line-height: 1.5;
    font-weight: 500;
}
.addnotes a {
    color: #0a3d62;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;

}
.addnotes a:hover {
    background-color: #0a3d62;
    color: white;
}
.students {
    margin: 2rem auto;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.students a span {
    color: black;
    border-radius: 50px;
    font-size: 2rem;
    padding: .4rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}
.students a:hover span{
    color: azure;
    background-color: orange;
    
}
.students .label {
    font-size: 1.5rem;
    font-family: "Chewy", system-ui;
    color: orange;
    text-shadow: 1px 1px 9px black,
                 -1px -1px 9px black;
}
footer {
    background-color: orange;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    height: 1.5rem;
    font-size: .8rem;
    line-height: 2;
    font-family: "Rubik", sans-serif;
    box-shadow: 0 -1px 9px black;

}
@media screen and (min-width: 800px) {
    .h1 {
        font-size: 6rem;
    }
    .recipeintro {
        max-width: 1200px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        flex-direction: row;
        align-items: center;
        gap: 1rem
    }
    .bgstory {
        flex: 0 0 auto;
        text-align: center;
    }
    .ingredients {
        flex: 0 0 auto;
        text-align: center;
    }
    .bgstory p, .ingredients ul {
        max-width: 500px;
        margin: 0 auto;
    }
    .process {
        margin: 1rem auto;
    }
    .process figure {
        max-width: 420px;
    }
    .addnotes {
        margin: 1rem auto;
    }
    .flex {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .students a span {
        font-size: 3rem;
    }
    .label {
        font-size: 2.5rem;
    }
}