*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Spline Sans', sans-serif;
}

.main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming_soon_wrapper {
    background-color: black;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.coming_soon_text {
    color: white;
    font-size: 64px;
    font-weight: 400;
}

@media only screen and (max-width: 768px) {
    .coming_soon_text {
        font-size: 32px;
    }
}
