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

/* Body */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #0a1f3d;
    text-align: center;
}

/* Container */
.container {
    padding: 20px;
    max-width: 90%;
    animation: fadeIn 1.5s ease;
}

/* Logo (JETZT GROß 🔥) */
.logo {
    width: 40vw;          /* responsive */
    max-width: 600px;     /* max Größe */
    min-width: 250px;
    margin-bottom: 30px;
    animation: float 4s ease-in-out infinite;
}

/* Überschrift */
h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Text */
p {
    font-size: 1.2rem;
    color: #555;
}

/* Animationen */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Tablet */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1rem;
    }

    .logo {
        width: 60vw;
    }
}

/* Handy */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.95rem;
    }

    .logo {
        width: 75vw;
    }
}
