@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background-color: rgba(63, 144, 158, 0.2);;

}

body {
    font-family: "Inter", sans-serif;
    position: relative;
}


:root {
    --brand-white: #f3f3f3;
    --brand-light: #dee6ec;
    --brand-light-mid: #9fb1c0;
    --brand-dark-mid: #3b4751;
    --brand-dark: #303a42;
    --brand-accent: #3f909e;
}

.light-text {
    color: var(--brand-white);
}

.accent-text {
    color: var(--brand-accent);
}


.content {

    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0px;
    height: 100vh;

}

.hero-panel {

    width: 100%;
    height: 50vh;
    max-height: 600px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;

    background-color: var(--brand-white);

}

#hero-logo {
    width: 85%;
    max-width: 500px;
}

.tagline {
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 300;

    text-align: center;
}

.accent-panel {

    width: 100%;
    height: 8px;

    flex-shrink: 0;

    background-color: var(--brand-accent);

}

.content-panel {

    position: relative;

    width: 100%;
    height: 100px;

    padding: 24px 8px;

    flex-grow: 1;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    background-color: var(--brand-dark);

}

.description {
    font-size: 14px;
    font-weight: 300;
    width: 90%;
    max-width: 1000px;
    text-align: center;
    margin-top: 48px;
    letter-spacing: 0.35px;
}

.contact {
    font-size: 14px;
    font-weight: 300;
    width: 90%;
    max-width: 1000px;
    text-align: center;
    letter-spacing: 0.35px;
}

.copyright {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.35px;
}


@media screen and (min-width: 431px) {
    .hero-panel {
        height: 66vh;
    }
    .description {
        margin-top: 32px;
        font-size: 16px;
    }
    .contact {
        font-size: 16px;
    }
    .copyright {
        font-size: 12px;
    }
}
