/* 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;
    transition: ease-in 0.2s;
}

a:hover {
    color: rgba(190, 87, 41, 0.5);
    transition: ease-in 0.2s;
}

body {
    background-color: black;
    overflow-x: hidden;
    background-position: 50%;
}

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

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

/* 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: row;
    color: rgba(190, 87, 41, 1);
    font-family: 'Tinos';
}

.videoAudioDoc {
    margin-left: 5rem;
    margin-top: 8.77rem;
}

iframe {

    border: 0.5rem rgba(0, 0, 0, 0.65) solid;
    width: 560px;
    height: 315px;
}

.allInfo {

    min-height: 94vh;
    max-width: 50%;
    margin-left: 1rem;

}

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

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

.pieceFormation {
    font-size: 1.1rem;
}

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

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

main p {

    text-indent: 2rem;
    text-align: justify;

}

@media (max-width: 1000px) {
    main {
        display: flex;
        flex-direction: column;
    }

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

    .pieceInfo {
        text-align: center;
    }

    .allInfo {
        min-height: min-content;
        max-width: 100%;
        margin-left: 0rem;
    }
}