@font-face {
    font-family: "JetBrains Sans";
    src: url("fonts/JetBrainsSans-Regular.woff2");
}

@font-face {
    font-family: "JetBrains Mono";
    src: url("fonts/JetBrainsMono-Regular.woff2");
}

:root {
    font-family: "JetBrains Sans", Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.87);
    background-color: #000000;
    text-align: center;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 320px;
    min-height: 100vh;
    align-items: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10;
    opacity: 1;
    animation: unveil 300ms ease forwards;
    animation-delay: 0ms;
    pointer-events: none;
}

h1 {
    font-size: 48px;
    line-height: 56px;
    font-weight: 300;
    margin: 0;
    opacity: 0;
    animation: fade-in-up 600ms ease forwards;
    animation-delay: 1800ms;
}

h2 {
    margin: 8px 0 0 0;
    flex-basis: 100%;
    opacity: 0;
    animation: fade-in-up 600ms ease forwards;
    animation-delay: 2000ms;
}

.title {
    margin-bottom: 40px;
}

#app {
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.logo {
    margin-top: 45px;
    margin-left: 20%;
    align-self: flex-start;
}

img {
    max-width: 100%;
    height: auto;
}

#globe {
    height: 56px;
    width: auto;
    flex-shrink: 0;
    opacity: 0;
    display: block;
    object-fit: contain;
    animation: fade-in 300ms ease forwards;
    animation-delay: 0ms;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes unveil {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 875px) {

    .logo {
        margin-top: 10px;
    }

    .title {
        margin-bottom: 30px;
    }
}
