* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #fafaff;
    color: #1F2399;
    max-width: 80%;
    margin-inline: auto;
}

h1 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
    text-align: center;
    color: #444aff;
}

a {
    color: #444aff;
    transition: color 240ms ease-out;
}
a:hover {
    color: #9497ff;
}
a:active {
    color: #444aff;
}

p {
    font-weight: 300;
    line-height: 1.5;
}

.flex-container {
    display: flex;
}

.grid-container {
    display: grid;
}

.image-container {
    font-size: 0;
}

.text-emphasis {
    font-weight: 400;
}

.underline {
    text-decoration: dotted underline;
    text-underline-offset: 0.1em;
}

header {
    position: fixed;
    top: 32px;
    width: 80%;
    text-align: center;
}

header .hexagon-container {
    height: 10px;
}

header .hexagon {
    height: 100%;
    width: auto;
}

header .availability {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    background-color: white;
    padding: 8px 32px;
    border-radius: 40px;
}
header .availability::before {
    content: "";
    position: absolute;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background-image: linear-gradient(to left, #bdbfff, #e5e6ff);
    left: -1px;
    top: -1px;
    z-index: -1;
    border-radius: 40px;
}

header .availability p {
    --default-font-size: 10px;
    font-size: var(--default-font-size);
    font-weight: 400;
}

header .availability .email-link {
    cursor: pointer;
}

.hero {
    height: 100vh;
    max-height: 1200px;
    min-height: 560px;
    place-items: center;
}

.hero-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 32px;
}

.logo-and-heading {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}

.logo-container {
    height: 165px;
}

.hero .logo {
    height: 100%;
    width: auto;
}

.summary {
    font-size: 14px;
    max-width: 480px;
    text-align: center;
    letter-spacing: 2%;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    padding-block: 24px;
    background-color: #fafaffa3;
    backdrop-filter: blur(8px);
}

footer p {
    font-size: 10px;
    font-weight: 400;
    text-align: center;
    opacity: 0.64;
    max-width: 80%;
    margin-inline: auto;
}


@media screen and (max-width: 720px) {
    h1 {
        font-size: 30px;
        text-align: left;
        max-width: 172px;
    }

    header {
        text-align: left;
    }

    .hero {
        justify-items: start;
        align-items: center;
    }

    .hero-content {
        align-items: start;
    }

    .logo-and-heading {
        align-items: start;
    }

    .logo-container {
        height: 120px
    }

    .summary {
        font-size: 14px;
        text-align: left;
    }

    footer p {
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 28px;
        max-width: 160px;
    }

    header .availability {
        column-gap: 12px;
    }

    .hero-content {
        row-gap: 28px;
    }

    .logo-container {
        height: 96px
    }

    .summary {
        font-size: 12px;
        max-width: 400px;
    }
}