body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
    color: white;
}

.coming-soon {
    display: flex;
    flex-direction: column; /* Align items vertically */
    align-items: center; /* Center the text horizontally */
}

.text {
    font-size: 48px;
    border-right: 3px solid white; /* Cursor */
    white-space: nowrap;
    overflow: hidden;
    animation: typing 10s steps(30, end) infinite, blink-caret 0.75s step-end infinite;
}

/* Animation for typing effect */
@keyframes typing {
    0% { width: 0; }                          /* Start with no text */
    25% { width: 12ch; }                      /* Type "Building!!!" */
    45% { width: 12ch; }                      /* Hold "Building!!!" */
    80% { width: 0; }                         /* Erase "Building!!!" */
    100% { width: 0; opacity: 0; }           /* Loop back */
}

/* Blinking cursor effect */
@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: white; }
}
