#overlay {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateY(100%);
    z-index: 9999;
}

#overlay.fade-in {
    opacity: 1;
    transform: translateY(0%);
}

.ol {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.600);
    z-index: -1;
}

.welcome {
    padding: 100px 100px 100px 100px;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.600);
}

.h2 {
    color: #F9AE3B;
    font-size: 60px; /* Increased size for visibility */
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    animation: pulseText 1.5s infinite alternate ease-in-out;
}

.h1 {
    color: #F9AE3B;
    font-size: 60px; /* Increased size for visibility */
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    animation: pulseText 1.5s infinite alternate ease-in-out;
}

/* Animation for pulsing effect */
@keyframes pulseText {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}
