@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
    background: #020202 repeating-linear-gradient(
            rgba(50, 50, 50, 0.1),
            rgba(50, 50, 50, 0.1),
            transparent 2px,
            transparent 5px
    );
    opacity: 0.9;
}

h1 {
    font-size: 100px;
    color: white;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 30px;
    text-shadow:
            0 0 50px rgba(255, 255, 255, 0.7),
            0 0 10px rgba(255, 255, 255, 0.7),
            0 0 20px rgba(255, 255, 255, 0.5),
            0 0 40px rgba(255, 255, 255, 0.4);
    transition: opacity 0.2s ease-in-out;
}

a {
    text-decoration: none;
    color: white;
}


/* Animated static line */
.line {
    position: absolute;
    z-index: -1;
    top: -5%; /* Start a bit above the viewport */
    left: 50%; /* Center horizontally */
    width: 120%; /* Full width */
    height: 4%; /* Thinner line for CRT effect */
    background: linear-gradient( rgba(0, 0, 0, 0.06), rgba(255, 255, 255, 0.10) 90%); /* Gradient merging with background */
    transform: translateX(-50%) skewY(-1deg); /* Center and tilt slightly */
    animation: static-line-animation 4s linear infinite; /* Adjust animation duration */
}

/* Animation keyframes for the static line */
@keyframes static-line-animation {
    0% {
        top: -1%; /* Start above the viewport */
        opacity: 0.3; /* Start with some opacity */
    }
    50% {
        opacity: 0.2; /* Fade out in the middle of the animation */
    }
    100% {
        top: 100%; /* Move down to the bottom */
        opacity: 0; /* Fade out at the end */
    }
}