* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background-color: black;
}

#click-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 1;
    transition: opacity 1.2s ease, transform 1s ease;
}

.overlay-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: monospace;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 3px;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7),
        0 0 20px rgba(255, 255, 255, 0.5);
    animation: float 3s ease-in-out infinite;
    transform: translateY(0);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

#background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    filter: blur(5px);
}

.content {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.title {
    color: rgba(255, 255, 255, 0.9);
    font-family: monospace;
    font-size: 3.5rem;
    text-align: center;
    letter-spacing: 3px;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7),
        0 0 20px rgba(255, 255, 255, 0.5);
    padding: 20px;
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .overlay-text {
        font-size: 1.5rem;
    }
}