#b-ground {
    background-image: linear-gradient(
        90deg,
        rgba(124, 255, 208, 1),
        rgba(250, 255, 168, 1)
    );
    filter: saturate(1.55) contrast(1.08);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

@font-face {
    font-family: menu;
    src: url(fonts/Gowun_Dodum/GowunDodum-Regular.ttf);
}

@font-face {
    font-family: paragraph;
    src: url(fonts/Mukta/Mukta-Regular.ttf);
}

@font-face {
    font-family: paragraphBold;
    src: url(fonts/Mukta/Mukta-Bold.ttf);
}

@font-face {
    font-family: title;
    src: url(fonts/Lusitana/Lusitana-Regular.ttf);
}

@font-face {
    font-family: titleBold;
    src: url(fonts/Lusitana/Lusitana-Bold.ttf);
}

@font-face {
    font-family: titleItalic;
    src: url(fonts/Libre_Caslon_Text/LibreCaslonText-Italic.ttf);
}

.separator {
    width:100%;
    height:2px;
    background:rgba(255, 0, 0, 0);
    border-bottom:solid 1px black;
}

.paragraphBold {
    font-family: paragraphBold;
}

p, h4, h5, h2, a {
    color:black;
    text-align:left;
}

h4, h5 {
    font-family: paragraphBold;
    line-height: 1.3;
}

h2 {
    font-family: paragraph;
    font-size: 22px;
}

p {
    font-family: paragraph;
    font-size: 16px;
}

h5 {
    font-size: 18px;
}

h4 {
    font-size: 20px;
}

a {
    text-decoration: none; 
    font-family: paragraphBold;
}

a:hover {
    text-decoration:underline;
}

.legend {
    width:100%;
    background:rgba(255, 165, 0, 0);
    position:relative;
    top:-22px;
}

body {
    background: rgba(254, 255, 220, 0);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    color: rgba(248, 15, 15, 0);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 26px;
}

header {
    position:relative;
    top:0;
    background: rgba(254, 255, 220, 0);
    width: 100%;
    height: auto;
    line-height: 2.3;
    margin-bottom: 141px;
}

nav {
    position:relative;
    background: rgba(255, 255, 0, 0);
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    display: flex;
    align-items:center;
    transition: 0.3s ease-out;
    
    a, span { 
        font-size: 40px;
        text-decoration: none;
        color: rgba(0, 0, 0, 1);
        font-family: title;
        letter-spacing: 1px;
    }

    a:hover {
        text-decoration:none;
    }       
}

#musicMenu {
    position: absolute;
    display: none;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.36);
    padding: 8px 10px;
    line-height: 1.2;
    min-width: 180px;
}

#musicMenu a {
    display: block;
    font-size: 15px;
    font-family: title;
    letter-spacing: 0.8px;
    text-decoration: none;
    margin-bottom: 6px;
}

#musicMenu a:last-child {
    margin-bottom: 0;
}

#musicButton:hover #musicMenu {
    display: flex;
}

#headerMenu {
    background: rgba(0, 128, 0, 0);
    list-style-type: none;
    margin-left: auto;
    display: flex;

    a, span {
        font-size: 18px;
        text-decoration: none;
        color: rgba(0, 0, 0, 1);
        font-family: title;
        letter-spacing: 0.8px;
    }
    
    li {
        margin-left: 17px;
    }
}

main {
    position:relative;
    top:0;
    background: rgba(254, 255, 220, 0);
    width: 90%;
    left: 5%;
}

/* INDEX */

.textBoxIndex {
    background:rgba(255, 0, 0, 0);
    width:100%;

    h4 {
        font-family: titleItalic;
        line-height: 1.5;
        text-align: center;
    }
}

#indexBox {
    position:relative;
    display:flex;
    width:100%;
    align-items:flex-start;
}

#indexLeft {
    width:55%;
    margin-right:5%;
}

#indexNews {
    width:40%;
}

#indexNews h5 {
    line-height: 1.15;
}

#indexNews p {
    line-height: 1.45;
}

#indexPic {
    width:100%;
    background-image: url(images/BlaiseUbaldini1.jpg);
    background-repeat: no-repeat;
    background-size:150%;
    background-position-x:49%;
    color:pink;

    p {
        text-align:justify;
    }

    img {
        width:100%;
        opacity:1;
        display:block;
    }
}

#quote {
    margin-top:20px;
    margin-bottom:20px;
}

#indexVid {
    width:100%;
    margin-right:0;
    margin-top:25px;
}

#indexVid iframe {
    width:100%;
    aspect-ratio:16/9;
    height:auto;
    display:block;
    margin-bottom:25px;
}

.tags {
    font-family: paragraph;
    font-size:14px;
}

/* ABOUT */

#aboutContainer {
    p {
        text-align:justify;
    }
}

#picBio {
    width:40%;
    float:left;
    margin-right: 50px;
    margin-bottom: 50px;
}

/* NEWS */

#newsBox {
    position:relative;
    display:flex;
    width:100%;
}

#news {
    width:50%;
    margin-right:10%;

    p {
        text-align:justify;
    }
}

.newsSeparator {
    width:100%;
    height:35px;
    opacity:1;
    filter: saturate(1) contrast(1) hue-rotate(90deg) drop-shadow(8px 8px 10px grey);
}

#insta {
    width:40%;
    margin-right:20px;
}

/* ALBUM PAGE */

.albumSection {
    position:relative;
    display:flex;
    width:100%;
    padding-bottom:60px;
    margin-bottom:60px;
    border-bottom:solid 1px black;
    align-items:flex-start;
}

.albumPic {
    width:22%;
    margin-right:4%;
}

.albumTxt {
    width:34%;
    margin-right:4%;
}

.albumDescription {
    width:40%;
}

.cdCovers {
    width:100%;
    display:block;
}

.vidContainer {
    width:100%;
    margin-bottom:25px;
}

.vidContainerFit {
    position:relative;
    width:100%;
    padding-top:56.25%;
}

.vidContainerFit iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

iframe {
    border:0;
}

.albumShortsRow {
    display:flex;
    gap:20px;
    width:100%;
}

.albumShort {
    position:relative;
    width:50%;
    padding-top:88%;
}

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

/* PRESS */

#reviews {
    width:36%;
    margin-right:0;
}

#interviews {
    width:30%;
    margin-right:0;
}

#pressRightColumn {
    width:26%;
}

.rtsAudioEmbed {
    position: relative;
    width: 100%;
    padding-top: 55%;
}

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

/* VIDEO PAGE */

#videoGrid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    width:100%;
}

.videoBlock {
    width:100%;
}

.soundBlock iframe {
    width:100%;
    height:166px;
    border:0;
}

.shortsRow {
    display:flex;
    gap:30px;
    width:66%;
    margin:50px auto 0 auto;
}

.shortItem {
    width:50%;
}

.shortsRow .vidContainerShort {
    position:relative;
    width:100%;
    padding-top:177%;
}

.shortsRow .vidContainerShort iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:0;
}


#contacts {
    display:flex;
    width:100%;
    align-items:flex-start;
    margin-bottom:80px;
}

#contacts .contact {
    flex:1;
    padding-right:35px;
    margin-right:35px;
    border-right:solid 1px black;
}

#contacts .contact:last-child {
    border-right:none;
    padding-right:0;
    margin-right:0;
}

#forPress {
    display:flex;
    width:100%;
    gap:6%;
    align-items:flex-start;
}

#dlBio {
    width:28%;
}

#dlPics {
    width:66%;
}

#forPress {
    display:flex;
    justify-content:space-between;
    gap:6%;
    align-items:flex-start;
}

#dlBio {
    width:28%;
}

#dlPics {
    width:66%;
}

#picContact table {
    width:100%;
    border-spacing:12px;
}

#picContact img {
    width:100%;
    display:block;
}

/* FOOTER */

#minimalFooter {
    width:100%;
    margin-top:90px;
    padding-top:20px;
    padding-bottom:10px;
    border-top:solid 0 rgba(0,0,0,0.18);
}

#minimalFooter p {
    text-align:center;
    font-size:14px;
    opacity:0.75;
    letter-spacing:0.3px;
}

#minimalFooter a {
    font-family:paragraph;
    text-decoration:none;
}

#minimalFooter a:hover {
    text-decoration:underline;
}

/* MEDIA 900 */

@media screen and (max-width: 900px) {
    #videoGrid {
        grid-template-columns:1fr;
        gap:20px;
    }

    .shortsRow {
        width:100%;
        gap:20px;
    }
}

/* MEDIA 800 */

@media only screen and (max-width: 800px) {

    p {
        font-size:14px;
        line-height:1.3;
    }

    h4 {
        font-size:18px;
        line-height:1.1;
    }

    h2 {
        font-size:20px;
        line-height:1.1;
    }

    #indexLeft {
        width:50%;
        margin-right:5%;
    }

    #indexNews {
        width:45%;
    }

    #indexPic,
    #indexVid {
        width:100%;
        margin-right:0;
    }

    .albumSection {
        display:block;
    }

    .albumPic,
    .albumTxt,
    .albumDescription {
        width:100%;
        margin-right:0;
        margin-bottom:25px;
    }
}

/* MEDIA 600 */

@media only screen and (max-width: 600px) {

    #indexBox {
        display:block;
        width:100%;
    }

    #indexLeft,
    #indexNews,
    #indexPic,
    #indexVid {
        width:100%;
        margin-right:0;
    }

    nav {
        display:block;
        text-align:center;
    }

    #headerMenu {
        padding:0;
        margin:0;
        display:flex;
    }

    #headerMenu li {
        margin:0;
        width:25%;
    }

    #newsBox {
        display:block;
    }

    #news,
    #insta,
    #reviews,
    #interviews,
    #pressRightColumn {
        width:100%;
        margin-right:0;
    }

    footer p {
        font-size:15px;
    }

    #footerTable {
        left:0;
        width:100%;
    }
    
    #contacts,
#forPress {
    display:block;
}

#contacts .contact,
#dlBio,
#dlPics {
    width:100%;
    margin-bottom:30px;
}
}