body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
}

.background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content {
    text-align: center;
    color: white;
    z-index: 1;
}

.logo-image {
    width: 80%;
    max-width: 200px;
    margin-bottom: 20px;
    margin-top: 30px; /* Agregado el margen superior */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.player {
    text-align: center;
}

audio {
    width: 80%;
    max-width: 600px;
}

#songInfo {
    margin-top: 20px;
}

#albumArt {
    width: 100px;
    height: 100px;
    margin-top: 10px;
    border-radius: 10px;
}
