/* style.css */

body {
    margin: 0;
    height: 100vh;
    background-color: #000;
    font-family: monospace;
    color: #00FF00;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Noise overlay */
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="1.5" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.2;
}

.container {
    text-align: center;
    z-index: 1;
}

h1 {
    font-size: 5rem;
    margin: 0 0 2rem 0;
}

.links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.links a {
    display: inline-block;
    color: #00FF00;
    text-decoration: none;
    font-size: 1.5rem;
    border-bottom: 1px dashed #00FF00;
    transition: color 0.2s, border-color 0.2s;
    text-align: center;
    width: auto;
}

.links a:hover {
    color: #55FF55;
    border-color: #55FF55;
}

@media (max-width: 600px) {
    .links {
        flex-direction: column;
        gap: 1rem;
        align-items: center; /* zentriert die gestapelten Links */
    }

    .links a {
        display: inline-block; /* unterstrich nur unter Text */
        text-align: center;
        width: auto; /* Breite nur so groß wie der Text */
    }
}