@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Literata:ital,opsz,wght@0,14..32,200..1000;1,14..32,200..1000&display=swap');
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh;
}

.main {
    width: 100%;
    height: 100vh;
    background-color: #041122;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.content {
    width: 100%;
    max-width: 1000px;
    padding: 0 30px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content p { 
    font-size: .84rem;
    color: #f6f6f6;
    line-height: 1;
    margin: .5rem 0;
}

.content img {
    max-width: 300px;
    margin-bottom: 15px;
    display: block;
    @media (max-width: 768px) {
        max-width: 250px;
        margin-bottom: 10px;
    }
}
.content .soon {
    font-size: .7rem;
    color: rgba(255,255,255,0.3);
    line-height: 1;
    margin: 0;
    margin-top: 5px;
    text-transform: uppercase;
}