body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: linear-gradient(to bottom, #5404e9, #a124c0);
    color: #000000;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

* {
    -webkit-user-select: none;
}

h1 {
    font-size: 3em;
    margin: 0.5em 0;
}

p {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.circle-container {
    position: relative;
    width: 600px; /* Angepasste Breite */
    height: 600px; /* Angepasste Höhe */
    margin: 0 auto;
}

.circle-container img {
    position: absolute;
    width: 150px; /* Vergrößerte Größe */
    height: 150px; /* Vergrößerte Größe */
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Angepasste Positionen für mehr Abstand in der Kreis-Anordnung */
.circle-container img:nth-child(1) { top: 5%; left: 50%; }
.circle-container img:nth-child(2) { top: 20%; left: 90%; }
.circle-container img:nth-child(3) { top: 50%; left: 95%; }
.circle-container img:nth-child(4) { top: 80%; left: 90%; }
.circle-container img:nth-child(5) { top: 95%; left: 50%; }
.circle-container img:nth-child(6) { top: 80%; left: 10%; } /* Größe und Position angepasst */
.circle-container img:nth-child(7) { top: 50%; left: 5%; }
.circle-container img:nth-child(8) { top: 20%; left: 10%; }

/* Neue Position und Größe für bild-lol */
.bild-lol {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    top: 25%; 
    left: 50%; 
    transform: translate(-206%, -30%);
    img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.video {
    margin-top: 75px;
}

.video-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ea00ff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

/* Media Query für mobile Geräte */
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .circle-container {
        width: 100%;
        height: 100%;
    }

    .circle-container img {
        width: 120px; /* Angepasste Größe für mobile Geräte */
        height: 120px; /* Angepasste Größe für mobile Geräte */
    }

    .video-button {
        font-size: 1em;
    }
}
