* {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
}
body {
    color: #222222;
}
h2 {
    text-align: center;
}
.dividerTitle {
    width: 100%;
    border-top: 4px solid #222222;
    border-bottom: 4px solid #222222;
    padding: 5px;
    margin-top: 100px;
}

/* HEADER STYLES */
nav {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 10px 0;
    z-index: 1;
}
nav h1 {
    font-family: "Sacramento", cursive;
    font-weight: 550;
    font-size: 3.5em;
    margin: 0;
}
nav ul {
    justify-content: space-between;
    list-style: none;
    display: flex;
    margin: 0;
}
nav a {
    padding: 0 5px;
    color: black;
}
#dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
video {
    width: 100%;
    height: auto;
    object-fit: cover;
}
/* CARD STYLES*/
.card {
    /*border: #333 solid 1px;*/
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;

}
img {
    width: 300px;
    height: 230px;
    border-radius: 5px;
}
.cardDiv {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.card h2 {
    font-family: 'Sacramento', cursive;
    font-size: 2.3em;
    font-weight: 450;
    margin-top: 8px;
    margin-bottom: 4px;
}
.card p {
    margin-top: 2px;
}
.size {
    font-size: 0.85em;
}

/* ORDER SECTION STYLES */
#orderDiv {
    text-align: center;
    margin-bottom: 100px;
    margin-top: 65px;
}
.orderList li {
    list-style: none;
}


/* FOOTER STYLES */
footer {
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0px;
    width: 100%;
    color: white;
    background-color: rgb(65, 65, 65);
    box-shadow: 5px 2px 5px rgba(0, 0, 0, 0.1);
}
#footerTop {
    display: flex;
    justify-content: space-around;
}
footer li {
    list-style: none;
    padding: 3px;
}
footer a {
    color: white;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
#emailSignUp {
    justify-content: center;
    align-items: center;
}
#credits {
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 900px) {
    nav {
        flex-direction: column;
        align-items: center;
    }
    nav ul {
        padding: 10px;
        width: 100%;
        justify-content: space-around;
    }
    nav h1 {
        margin-bottom: 20px;
    }
    nav div {
        display: none;
    }
    body {
        margin-top: 180px;
    }
    
    
}
@media screen and (max-width: 426px){
    img {
        width: 150px;
        height: auto;
    }
    .card {
        margin: 7px;
    }
    nav h1 {
        font-size: 2.5em;
    
    }
    footer {
        flex-direction: column;
        align-items: center;
    
    }
}
@media screen and (min-width: 1122px) {
    video {
        width: 1100px;
        height: auto;
        align-self: center;
    }
    #hero {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #222222;
    }
}