@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Libre Baskerville', Georgia, serif;
    background-color: #d4cdc3;
    color: white;
    text-align: center;
}

.content {
    width: 100%;
    height: 100%;
    max-width: 996px;
    background-color: #003084;
    margin: 0px auto 0px auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.header {
    padding: 20px;
}

.header h1 {
    margin: 10px 0;
    font-size: 2em;
}

.subtitles {
    font-size: 1em;
    margin-bottom: 15px;
}

.banner {
    background-color: #002266;
    padding: 10px;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    font-weight: bold;
    font-size: 1.1em;
}

.hero-banner {
    margin-top: 20px;
    margin-bottom: 48px;
}

.hero-names {
    font-size: 22px;
    font-weight: bold;
}

.hero-names .main-name {
    font-size: 24px;
    padding: 10px 10px 10px 10px;
}

.hero-names .secondary-names-block {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.hero-names .secondary-names {
    padding: 10px 10px 10px 10px;
}

.hero-subtitle {
    margin: 20px auto;
    font-size: 24px;
    font-weight: bold;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding: 5px 0px;
    width: 95%;
    max-width: 800px;
}

.hero-flag {
    position: relative;
    top: -172px;
    left: -405px;
}

.hero-flag div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-flag img {
    height: 200px;
}

.image-container {
    margin: 0px auto;
}

.image-container img {
    width: 95%;
    max-width: 800px;
    height: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 3;

}

.audio-container {
    margin: 30px auto;
    max-width: 800px;
    width: 95%;
    border-radius: 5px;
}

.audio-container>div {
    border-radius: 5px;
}

.audio-container audio {
    width: 95%;
    max-width: 800px;
    display: block;
    margin: auto;
}



.playlist {
    list-style: none;
    padding: 0;
    width: 95%;
    max-width: 800px;
    display: block;
    margin: auto;
}

.playlist li {
    padding: 10px;
    border-bottom: 1px solid #3e5171;
    cursor: pointer;
    border-radius: 5px;
}

.playlist li.active {
    background-color: #ffffff22;
    color: #fff;
    font-weight: bold;
}


.musician-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #003084;
    padding: 30px 0;
    gap: 30px;
}

.musician {
    text-align: center;
    color: white;
    max-width: 250px;
}

.musician img {
    width: 95%;
    max-width: 250px;
    height: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
}

.musician .name {
    margin-top: 10px;
    font-size: 18px;
    font-family: Georgia, serif;
}


.copyright {
    margin: 20px 0px;
    padding-bottom: 10px;
}

.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-responsive iframe {
    left: 98px;
    top: 0;
    height: 100%;
    width: 800px;
    position: absolute;
    border-radius: 5px;
}

@media (max-width: 850px) {

    .video-responsive iframe {
        left: 2.5%;
        width: 95%;
    }

    .hero-flag {
        display: none;
    }

    body {
        background-color: #003084;
    }

    .content {
        box-shadow: none;
    }

    .image-container img {
        border-radius: 5px;
    }
}