/* Styles for content visibility and positioning */

.content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-text {
    display: none;
    transition: opacity 0.8s ease; /* Smooth transition effect */
}

.content-text.active {
    display: block;
    animation: fadein 1s; /* Fade-in animation */
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Additional styles related to functionality */
/* Add your additional styles here if needed */
