body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #000000;
}
.body{
    height: 100vh;
}

#home{
    height: auto;


}
img{
    border-radius: 10px;
    width:50%;
}

#about{
    height: 100vh;
}
.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #000000;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 40px 0;
    text-align: center;
}

section h2 {
    margin-bottom: 20px;
}

.artist {
    display: inline-block;
    width: 45%;
    margin: 2.5%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.artist img {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
}


.logo{
    justify-content: center;
    text-align: center;
    align-items: center;
}
.logo img{
    width: 300px;
}

a img{
    width: 45px;
}
button{
    background-color: #000000;
    width: 120px;
    height: 50px;
    color: white;
    border: 0px;
    border-radius: 20px;

}

footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
}


#songs {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}


#about p{
    margin-left: 20%;
    margin-right: 20%;
    text-align: center;
}

.message {
    text-align: center;
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 100vh;
}
.message img{
    width: 50px;
}


.music-block {
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 9px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 400px;
    margin: 10px;
    flex-direction:row;
    flex-wrap:wrap;
}

.music-image {
    width: 150px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.music-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.music-title {
    font-size: 20px;
    margin: 0 0 8px 0;
}

.music-author {
    font-size: 16px;
    color: #666;
    margin: 0 0 16px 0;
}

.music-audio {
    width: 100%;
}
.empty{
    max-height: 700px;
    min-height: 400px;
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    header h1 {
        font-size: 24px;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    section {
        padding: 30px 0;
    }

    .logo img {
        width: 200px;
    }

    #about p {
        margin-left: 10%;
        margin-right: 10%;
    }
    
}

@media (max-width: 480px) {
    header {
        padding: 10px 0;
    }

    header h1 {
        font-size: 20px;
    }

    nav ul li {
        margin: 5px 0;
    }

    section {
        padding: 20px 0;
    }


    .logo img {
        width: 150px;
    }

    #about p {
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media (max-width: 480px) {
    .music-block {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .music-image {
        margin: 15px;
        width: 150px;
        height: auto;
    }

    .music-info {
        padding: 16px;
        text-align: center;
    }

    .music-title, .music-author {
        text-align: center;
    }
}