body {
    margin: 0px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-image: url("Medien/GXMW8YJW8AA53v3.jpg");
    background-size: cover;
}

.headline {
    width: 750px;
    height: 150px;
    background-color: transparent; 
    border-radius: 50px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 60px; 
    color: rgb(255, 255, 255); 
    text-shadow: 5px 5px 7px rgba(221, 83, 255, 0.7); 
}

.container {
    display: flex;
    justify-content: center;
    gap: 200px;
    margin-top: 50px;
}

.left-column, .right-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.kreis-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}


.kreisLP, .kreisBMTH, .kreisTOP, .kreisDS {
    width: 250px;
    height: 250px;
    background-color: white;
    background-size: cover;
    background-position: center;
    border-radius: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 10px;
}


.kreis-container:hover .kreisLP,
.kreis-container:hover .kreisBMTH,
.kreis-container:hover .kreisTOP,
.kreis-container:hover .kreisDS {
    transform: scale(1.1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}


.kreisLP {
    background-image: url("Medien/GYyonsnXAAEvkoo.jpg");
}

.kreisBMTH {
    background-image: url("Medien/BringMeTheHorizon.jpg");
}

.kreisTOP {
    background-image: url("Medien/TwentyOnePilots_by_Ashley_Osborn-scaled.jpg");
}

.kreisDS {
    background-image: url("Medien/Dead-Sara-Press-Foto-768x627.webp");
}


.kreis-text {
    font-size: 30px; 
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(221, 83, 255, 0.7);
    transition: color 0.3s ease;
}

.kreis-container:hover .kreis-text {
    color: #e371ff;
}