@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');
*,
*::before,
*::after {
    box-sizing: border-box;
}

body, main {
    font-family: 'Inter', sans-serif;
    margin: 0;
}
.available-soon {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    color: #fcfcfc;
    background: black;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 60px 0 60px;
    gap: 20px;
}

.available-soon h1 {
    font-size: 100px;
    font-weight: bold;
    line-height: 1.4;
    color: #F5F5F5;
    margin: 0;
}

.available-soon p {
    font-size: 21px;
    font-weight: 200;
    color: #fcfcfc;
    line-height: 1.5;
    margin: 0;
}

.available-soon a {
    text-decoration: underline;
    color: #fcfcfc;
    cursor: pointer;
}

.available-soon a:hover {
    font-weight: 400;
}

/* All Hilight Classes */

.yellow-gradient-hilight {
    background: linear-gradient(0deg, #FFD700 0%, #FFEF99 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.yellow-hilight {
    color: #FFD700;
}

@media (min-width: 768px) and (max-width: 1024px) {
    
}