@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');

*,
html {
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, .4);
    line-height: 1.5;
    outline: none;
}

:root {
    --bgColor: #2A4F85;
    --logoColor: #F9F9F9;
}

strong {
    font-weight: 500;
}

a {
    text-decoration: none;
    border-bottom: 2px solid #29B6F6;
}

body {
    padding: 0;
    margin: 0;
    background-color: var(--bgColor);
    background: radial-gradient(100% 100% at 100% 100%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%) var(--bgColor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
    min-height: 100vh;
    width: 100vw;
}

p {
    margin: 0;
}

.content {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header {
    display: flex;
    align-items:center;
    padding: 8px;
    height: 64px;
    margin-top: 8px;
}

footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 8px;
    height: 64px;
}

#logo {
    width: 384px;
    height: auto;
    stroke: var(--logoColor);
    stroke-width: 12;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    aspect-ratio: initial;
}

.logo-min-w {
    width: 300px;
    height: auto;
    aspect-ratio: initial;
    fill: none;
    stroke: var(--logoColor);
    opacity: .9;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    padding-bottom: 16px;
}


.hero {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 1280px;
    text-align: center;
    background: linear-gradient(0deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.tagline {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 1280px;
    text-align: center;
    background: linear-gradient(0deg, rgba(255, 255, 255, .4), rgba(255, 255, 255, .8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 32px 0;
}

@media only screen and (max-width: 768px) {
    #logo {
        max-width: 50vw;
    }

    .hero {
        font-size: 1.5rem;
        margin-top: 12px;
        padding: 24px;
    }

    .tagline {
        font-size: 2rem;
        margin-bottom: 12px;
        padding: 0 54px;
    }

    .logo-min-w {
        width: 144px;
    }


    header {
        padding: 2px;
        height: 16px;
    }

    footer {
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 2px;
        height: 16px;
        margin-bottom: 32px;
    }


}