* {
    box-sizing: border-box;
}

html, body {
    background-color: black;
    opacity: 0.9;
    color: seashell;
    font-family: Helvetica, sans-serif;
    font-size: 22px;
    height: auto;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 10vh;
    border-bottom: 1px solid seashell;
    display: flex;
    justify-content: space-between;
    align-items: space-between;
    z-index: 1;
    margin-bottom: 50px;
}

a {
    text-decoration: underline;
    color: seashell;
}

nav ul li {
   display: inline-block;
   padding: 0 20px 0 10px;
   margin-right: 10px;
}


#mission {
background-image: url(./resources/IMAGES/img-mission-background.jpg);
background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 90vw;
    height: 100vh;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 9vh;
    margin-left: 4vw;
}

.missiont {
    flex-direction: column;
    text-align: center;
    background-color: black;
    width: 100%;
    display: flex;
}

#featured {
    position: relative;
    width: 80vw;
    min-height: 100vh;
    margin: 10vh auto;
    text-align: center;
}


.featuredt {
    justify-content: center;
}

.tea img {
    width: 400px;
    height: 300px;
    margin: 10px;
}


.tea {
    display: flex;
    justify-content: space-around;
    flex-flow: row wrap;
}


#locations {
    background-image: url(./resources/IMAGES/img-locations-background.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 90vw 100vh ;
        width: 90vw;
        min-height: 100vh;
        margin-left: 4vw ;
    }
    
    .places {
        display: flex;
            align-content: center;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 15vh;
    }
    .locationst {
        text-align: center ;
        position: relative;
        top: 15vh;
    }


.downtown, .bayside, .oakdale {
    background-color: black;
    width: 300px ;
    height: 300px;
    margin: 15px 40px;
    opacity: 1;
    text-align: center ;
}

.address {
   text-align: center;
   line-break: auto;
}

.contact {
    text-align: center;
}

footer {
    text-align: left;
    margin-left: 2vw;
    position: static;
    bottom: 0px;
}

