html {
    font-size: 20px;
    overflow-x: hidden;
}

body {
    font-family: Helvetica, sans-serif;
    background-color: #121d14; /* Dark forest green */
    margin: 0;
    overflow-x: hidden;
}

div.BackNav {
    text-align: right;
}

h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #e2f3e4;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 10px 0;
    padding: 6px 0;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

h2, h3, h4, h5 {
    display: block;
    font-weight: bold;
    color: #6FCF97; /* Minty green headers */
    margin: 0 0 0.67em 0;
    font-size: 0.8rem;
}

hr {
    display: block;
    margin: 0.5em auto;
    border-style: inset;
    border-width: 1px;
    border-color: #2d4433; /* Muted green-gray border */
}

p, li {
    display: block;
    margin: 1em 0;
    color: #cfead3; /* Light greenish text */
    font-size: 0.6rem;
}

a {
    color: #e0f5e7;
    font-size: 0.8rem;
    text-decoration: none;
}

a:visited {
    color: #b4d8bf;
}

a:hover,
a:active {
    color: #6FCF97; /* Highlighted green on hover */
}

em {
    font-style: italic;
    color: #57b97a; /* Softer green */
    font-size: 0.8rem;
}

b {
    font-weight: bold;
    font-size: 0.6rem;
}

/* General Image Styling */
img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Music Menu */
.musicmenugallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem;
}

.musicmenuartist {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 25px;
    background-color: #1c2a20; /* Deep green-gray background */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.musicmenuphoto img {
    align-self: flex-start;
    width: 40%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}

.musicmenutext {
    align-self: flex-start;
    text-align: left;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0.5rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #cfead3;
}

.musicmenuvideo,
audio {
    position: absolute;
    width: 55%;
    aspect-ratio: 16 / 9;
    background-color: #1c2a20;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    top: 8px;
    right: 8px;
    max-width: 100%;
    max-height: 100%;
    transition: all 0.3s ease;
}

.responsive-iframe {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .musicmenugallery {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        padding: 2rem;
    }

    .musicmenuphoto {
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
    }

    .musicmenuphoto img {
        width: 100%;
        height: auto;
    }

    .musicmenuvideo,
    audio {
        position: relative;
        padding-top: 60%;
        border-radius: 8px;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
    }

    .responsive-iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
}
