/* styles.css */
html {
    --s: 154px; /* control the size*/
    --c1: #f8b195;
    --c2: #355c7d;
    
    --_g: 
       var(--c2) 6%  14%,var(--c1) 16% 24%,var(--c2) 26% 34%,var(--c1) 36% 44%,
       var(--c2) 46% 54%,var(--c1) 56% 64%,var(--c2) 66% 74%,var(--c1) 76% 84%,var(--c2) 86% 94%;
    background:
      radial-gradient(100% 100% at 100% 0,var(--c1) 4%,var(--_g),#0008 96%,#0000),
      radial-gradient(100% 100% at 0 100%,#0000, #0008 4%,var(--_g),var(--c1) 96%)
      var(--c1);
    background-size: var(--s) var(--s);
}

body {
    font-family: Georgia, serif;
    font-style: oblique;
    color: rgb(255, 255, 255);
    justify-items: center;
    text-align: center; /* Center text and inline elements */
    margin: 0;
    padding: 60px;
    min-height: 100vh; /* Ensure the body takes up at least the full viewport height */
    display: flex;
    flex-direction: column; /* Stack children vertically */
}

div {
    background: rgba(83, 52, 73, 0.4);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(83, 52, 73, 0.3);

    justify-items: center;
    height: fit-content;
    margin: 30px auto;
    padding: 30px;
}

div#audio-player {
    min-width: 300px;
}

img {
    max-width: 60%;
}

a {
    color: rgb(255, 201, 228);
}

header {
    margin-bottom: 60px;
}

#banner {
    max-width: 100%; /* Ensure the image scales with the viewport */
    height: auto;    /* Maintain aspect ratio */
}

#playlist-files, .carousel__viewport {
    list-style-type: none;
    padding: 0;
}

#player {
    width: 100%; /* Make the player span the width of the container */
    max-width: 600px; /* Optional: limit the maximum width */
    margin: 20px auto; /* Center the player and add vertical spacing */
}

footer {
    margin-top: auto; /* Push footer to the bottom of the page */
    padding: 20px; /* Add space around the GIF */
}

#footer-gif {
    max-width: 100%; /* Ensure the GIF scales with the viewport */
    height: auto;    /* Maintain aspect ratio */
}
