/* RESET */
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
html, body {
    height: 100%;
}
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    width: 100%;
}
input, button, textarea, select {
    font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
#root, #__next {
    isolation: isolate;
}

/* STYLES */
html, body {
    background: #191b20;
    font-family: 'Outfit', Helvetica Neue,Helvetica,Arial,sans-serif; 
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    font-size: 19px;
    word-wrap: break-word;
    font-kerning: auto;
    text-align: center;
    width: 100vw;
    overflow-x: hidden;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: #a2acc7;
}
a:hover {
    text-decoration: underline;
}

.seo-text {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    visibility: hidden;
}
.seo-text * {
    text-indent: -999999px;
    margin: 0;
    padding: 0;
    width: 0;
    height: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    height: 80vh;
    margin: 0 auto;
}

.logo {
    width: 30vw;
    min-width: 300px;
    margin: 2rem auto;
}

.info {
    width: 80%;
}
.info h1 {
    font-size: 2rem;
    text-transform: uppercase;
}
.info a {
    letter-spacing: 0.2em;
}

@media (max-width: 768px) {
    .info {
        width: 90%;
    }
    .info h4 {
        letter-spacing: 0.25em;
    }
    .info a {
        letter-spacing: 0.1em;
    }
}