body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;

}

.coming-soon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

.coming-soon-box {
    border: 2px solid #000000;
    padding: 48px 64px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-text {
    font-weight: bold;
    font-size: 2.5rem;
    color: #000000;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
/* @font-face rule for Sixtyfour Convergence Static Font */
@font-face {
    font-family: 'SixtyfourConvergenceStatic';
    src: url('./fonts/SixtyfourConvergence-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* @font-face rule for Sixtyfour Convergence Variable Font */
@font-face {
    font-family: 'SixtyfourConvergenceVariable';
    src: url('./fonts/SixtyfourConvergence-Regular-VariableFont_BLED,SCAN,XELA,YELA.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Basic styling for body */
body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}



/* Dot styling */
.dots {
    display: inline-block;
    width: 1.5em;
    text-align: left;
    vertical-align: bottom;
    white-space: nowrap;
    position: relative;
}

/* Media query for mobile devices */
@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
}

/* Media query for tablets */
@media (min-width: 601px) and (max-width: 1024px) {
    h1 {
        font-size: 1.8rem;
    }
}

/* Media query for desktops */
@media (min-width: 1025px) {
    h1 {
        font-size: 2.5rem;
    }
}
