/* Existing CSS styles */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    font-size: 2em;
    font-weight: bold;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    position: relative; /* Allows absolute positioning of the dynamic text */
}

.cursor {
    display: inline;
    animation: blink 0.7s steps(2) infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.blue {
    color: blue;
}

.fade-out {
    opacity: 0;
    transition: opacity 1s ease-out;
}

/* Class to animate the movement to the center */
.centered-text {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    transition: transform 1s ease-out;
}

/* New styles for "coming soon!" */
#coming-soon {
    opacity: 0;
    font-size: 1.25em;
    font-weight: bold;
    color: black; /* Adjust color as needed */
    transition: opacity 1s ease-in; /* Smooth fade-in effect */
    position: absolute;
    top: 150%; /* Position it below the dynamic text */
    left: 43%;
    transform: translateX(-43%);
}
