body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(270deg, #003552, #00a9e0);
    background-size: 400% 400%;
    animation: animatedBackground 15s ease infinite;
}

@keyframes animatedBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

img {
    margin-bottom: 20px; /* Space between image and audio player */
}

.audio-player {
    width: 400px; /* Adjust width of the audio player */
    outline: none; /* Removes the outline on focus */
    opacity: 0.7; /* Slightly transparent */
    transition: opacity 0.3s ease; /* Smooth transition for hover effect */
}

.audio-player:hover {
    opacity: 1; /* Full opacity when hovered */
}