/* Reset some basic styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Times New Roman", Times, serif;
    color: #4A3729;
}

body {
    background: url('bgr.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.profile {
    margin-top: 20px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border: 2px solid #483527;
    box-shadow: 0 0 10px #483527;
    border-radius: 50%;
}

.about, .music-box {
    background-color: rgba(223, 216, 208, 0.8); /* Beige hue with transparency */
    padding: 20px;
    text-align: center;
    border: 2px solid #483527;
    box-shadow: 0 0 10px #483527;
    margin-top: 20px;
    width: 300px;
    border-radius: 15px; /* Rounded corners */
}

.buttons {
    margin-top: 10px;
}

.btn {
    display: inline-block;
    background-color: #ded8d2; /* Matching beige hue */
    padding: 10px 20px;
    margin: 5px;
    border: 2px solid #483527;
    box-shadow: 0 0 5px #483527;
    text-decoration: none;
    color: #A50000;
    font-weight: bold;
    border-radius: 10px; /* Rounded corners for buttons */
}

.music-row {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px; /* Add spacing between the music boxes */
    flex-wrap: wrap; /* Allow boxes to wrap to the next line on small screens */
}

.music-box {
    margin-bottom: 20px; /* Add margin between rows of boxes */
}

.cover-art {
    width: 150px; /* Fixed width for square shape */
    height: 150px; /* Fixed height for square shape */
    object-fit: cover; /* Ensure the image covers the area without stretching */
    margin-bottom: 10px;
}

.download-buttons {
    margin-top: 10px;
}

.download-btn {
    display: inline-block;
    background-color: #ded8d2; /* Matching beige hue */
    padding: 10px 20px;
    margin: 5px;
    border: 2px solid #483527;
    box-shadow: 0 0 5px #483527;
    text-decoration: none;
    color: #A50000;
    font-weight: bold;
    border-radius: 10px; /* Rounded corners for download buttons */
}

/* Responsive Design */
@media (max-width: 768px) {
    .music-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .music-box {
        width: 100%; /* Make the boxes full width on small screens */
        max-width: 300px; /* Keep them at a manageable size */
        margin: 0 auto; /* Center the boxes on the screen */
    }

    .about {
        width: 80%;
    }

    .profile-pic {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .music-box {
        width: 100%; /* Full width for very small screens */
        max-width: 300px; /* Keep them at a manageable size */
        margin: 0 auto; /* Center the boxes on the screen */
    }

    .about {
        width: 90%;
    }
}

a {
  color: #A50000;
 } 
  .logo {
    width: 200px; /* Fixed width for square shape */
    height: auto; /* Fixed height for square shape */
    object-fit: cover; /* Ensure the image covers the area without stretching */
    margin-bottom: 10px;
}