*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    
}

body{
    background-color: black;
}

.container{
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.music-player{
    background: black;
    width: 400px;
    padding: 5px 35px;
    text-align: center;
}

nav{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

nav .circle{
    border-radius: 50%;
    padding: 7px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    color: #333;
    box-shadow: 0 5px 10px rgba(255, 26, 26, 0.22);
    visibility: hidden;
}

.song-img{
    width: 180px;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow: 0 10px 60px rgba(255, 26,26,0.22);
}

.music-player h1{
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin-top: 20px;
}

.music-player p{
    font-size: 14px;
    color: white;
}

#progress{
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
    cursor: pointer;
    margin: 20px 0;
}

#progress::-webkit-slider-thumb{
    -webkit-appearance: none;
    background: #333;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 5px rgba(255, 26, 26, 0.22);
}
.controls{
    display: flex;
    justify-content: center;
    align-items: center;
}
.controls div{
    width: 40px;
    height: 40px;
    margin: 20px;
    background: white;
    background-color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #333;
    box-shadow: 0 10px 20px rgba(255, 26, 26, 0.22);
    cursor: pointer;
}

.controls div:nth-child(2){
    transform: scale(1.5);
    background: #333;
    color: white;
}


.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    background-color: black;
    height: 100%;
    padding-top: 20px;;
}
.social-links a {
    text-decoration: none;
}
.social-links img {
    width: 40px;
    height: 40px;
    
}

@media (max-width: 600px) {
    img {
        max-width: 300px;
    }
    h1 {
        font-size: 1.5rem;
    }
    .social-links img {
        width: 30px;
        height: 30px;
    }
}

.logo{
    display: flex;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: black;
}

.logo img{
    max-height: 300px;
    
}

.impress a
{
    padding: 20px;
    padding-top: 20px;
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;

}



.footer {
    background-color: black;
    width: 100%;
    height: 100%; /* oder eine gewünschte Höhe */
    background-repeat: repeat-y;
}

.main{
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.navContainer{
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}