body {
    margin: 0px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-image: url("Medien/Download.png");
    background-size: cover;
}

.headline {
    width: 750px;
    height: 150px;
    background-color: transparent; 
    border-radius: 50px;
    margin-top: 60px;
    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: 2px 2px 5px rgba(227, 113, 255, 0.7); 
}

.headline-image {
    max-width: 170%; 
    max-height: 170%; 
}

.members-container {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 50px; 
    margin-top: 30px;
}

.members-row {
    display: flex;
    justify-content: center; 
    gap: 80px; 
}

.bottom-row {
    display: flex;
    justify-content: center; 
    gap: 80px; 
}

.member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle {
    width: 250px;
    height: 250px;
    background-color: white;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}


.circle:hover {
    transform: scale(1.1); 
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.3); 
}


.member:hover .name {
    color: #ff9100; 
    text-shadow: 2px 2px 5px rgba(255, 102, 0, 0.7);
    transition: color 0.3s ease; 
}

.name {
    margin-top: 10px;
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(255, 115, 0, 0.7);
    text-align: center;
}


.popup {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    justify-content: center;
    align-items: center;
}

.popup:target {
    display: flex;
}
    

.popup-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease; 
}


.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.close-btn:hover {
    color: #ff9100; 
}


@keyframes slideDown {
    from { transform: translateY(-30px); }
    to { transform: translateY(0); }
}



a {
    color: inherit; 
    text-decoration: none; 
}


a:visited {
    color: inherit; 
    text-decoration: none; 
}

.song-box-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.song-box {
    width: 250px;
    height: 250px;
    background-color: white;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    position: relative; 
}

.song-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.3);
}

.song-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 20px;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    visibility: hidden; 
    opacity: 0; 
    transition: visibility 0s, opacity 0.3s ease-in-out;
}

.song-box:hover .song-title {
    visibility: visible; 
    opacity: 1; 
}

.content-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-top: 15px;
}

.song-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}