body {
    font-family: "Open Sans", sans-serif;
    background-color: #8ECCBE;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    margin: 0;
    box-sizing: border-box;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    display: flex;
    width: 100vw;
    border-bottom-width: 1.8px;
    border-bottom-style: solid;
    border-bottom-color: white;
    justify-content: center;
    padding-top: 300px;
}

.logo img{
    width: 10vw;
    padding-bottom: 20px;
}
.tagline {
    font-size: 1.4em;
    font-weight: 300;
    text-align: center;
    margin-bottom: 10px;
}

.coming-soon {
    font-size: 1.2em;
    font-weight: 300;
    font-style: italic;
    text-align: center;
}

.footer {
    width: 100%;
    background-color: #6EC1AB;
    padding: 30px 0;
}

.contact-container {
    width: min(1100px, 90%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1em;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: white;
    text-decoration: none;
    font-weight: 300;
}

.contact-text span {
    color: white;
}

.contact-text a,
.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 300;
}

.contact-text a:hover,
.contact-item a:hover {
    text-decoration: underline;
}

.contact-item i {
    font-size: 1.5em;
}
