body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    text-shadow: 0 0 2px #000;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.logo {
    font-size: 144px;
    color: #ff0000;
    text-shadow: 0 0 5px #ff0000;
}

.babylonica-regular {
    font-family: "Babylonica", cursive;
    font-weight: 400;
    font-style: normal;
}

.letter {
    opacity: 0;
    animation: appear 0.5s forwards;
    animation-delay: var(--delay);
}

@keyframes appear {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Retro-Elemente */
body {
    background-image: linear-gradient(to bottom, #000, #111);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }
}
