
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, #d8b1f6, #72dbfe);
    color: #333;
    text-align: center;
}

h1 {
    font-size: 3rem;
    color: #80b3f0;
    text-shadow: 2px 2px 4px #000;
    margin-top: 20px;
}

h2 {
    font-size: 2rem;
    color: #87CEFA;
    text-shadow: 1px 1px 2px #000;
    margin-bottom: 10px;
}


#blink {
    animation: blink-animation 1.5s infinite;
}

@keyframes blink-animation {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}


nav {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    display: inline-block;
    margin: 10px auto;
}


.characters {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin: 20px;
}

.character {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 200px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.Bild {
    position: relative;
    text-align: center;
}

.Bild img {
    width: 150px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.Bild img:hover {
    transform: scale(1.1);
}

.Bild a {
    text-decoration: none;
    color: #127494;
    font-size: 1.5rem;
    font-weight: bold;
    transition: color 0.3s;
}

.Bild a:hover {
    color: #b369f3;
}

/* Mobilfreundliches Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }


    .Bild a {
        font-size: 1.2rem;
    }

    .Bild img {
        width: 100px;
        height: 80px;
    }
}
