/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* General CSS attributes for the page */

a {
    text-decoration: none;
}

.backgroundPic {
    position: fixed;
    background-position: 50%;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
}

main a {
    color: rgb(184, 121, 92);
    font-weight: bold;
}

/* Header nav bar for all pages */

header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100.1vw;
    background-color: rgba(190, 87, 41, 0.5);
    margin-left: -9px;
    font-family: 'Tinos';
}

header a {
    color:rgba(190, 87, 41, 1);
}

/* Piece content */

main {
    display: flex;
    flex-direction: column;
    color: rgba(190, 87, 41, 1);
    font-family: 'Tinos';
}

.videoAudioDoc {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

iframe {
    border: 0.5rem rgba(0, 0, 0, 0.65) solid;
    width: 93.15vw;
    height: calc(93.15vw * 0.565); /* width * 0.565 */
    margin-bottom: 6rem;
}

.allInfo {
    margin-left: 10px;
    margin-right: 10px;
}

.pieceInfo {
    margin-top: 1.5rem;
    background-color: rgba(0, 0, 0, 0.65);
    padding: 0.6rem;
    text-align: center;
}

.pieceTitle {
    font-size: 2rem;
    font-family: 'Playfair Display';
}

.pieceFormation {
    font-size: 1.5rem;
}

.pieceText {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.65);
    padding: 0.6rem;
    font-size: 1.2em;
}

hr {
    border-top: 0.5px solid white;
}

main p {
    text-indent: 2rem;
    text-align: justify;
}