
/*text elements*/
body {
    background-color: black;
}

h1, h2, h3, h4, h5, h6, p, a {
    font-family: Arial, Helvetica, sans-serif;
    color: seashell;
    text-align: center;
    opacity: 0.9;
}

/*sections*/
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 69px;
    padding: 10px;
}

nav {
    color: white;
    align-items: center;
}

header ul {
    display: flex;
    list-style-type: none;
}

header li {
    padding: 10px;
}

.first-hero {
    display: flex;
    align-items: center;
    background-image: url(/images/img-mission-background.webp);
    height: 700px;
    max-width: 1200px;
    margin: auto;
}

.hero-title {
    width: 100%;
    background-color: black;
}

.second-hero {
    max-width: 1000px;
    margin: auto;
    padding: 10px;
}

.tea-selection {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 30px;
}

.tea-preview {
    height: 200px;
    width: 300px;
}

.strip-three {
    background-image: url(images/img-locations-background.webp);
    margin: auto;
    padding: 10px;
    max-width: 1200px;
    min-height: 500px;
    display: flex;
    flex-flow: column nowrap;
}

.locations {
    display: flex;
    flex-flow: row wrap;
    gap: 40px;
    justify-content: center;
}

.location {
    background-color: black;
    padding: 10px;
    width: 300px;
    height: 300px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.footer-info {
    height: 200px;
}

/* ids */
#logo {
    max-height: 50px;
    opacity: 0.9;
}

#copyright {
    text-align: left;
}