@import url('https://fonts.googleapis.com/css?family=Barlow+Semi+Condensed');

/* @font-face {
    font-family: Untitled;
    src: url("https://github.com/Aisyt/Untitledfont/blob/master/UntitledSerif-Regular.ttf") format('truetype');

} */

*, ::after, ::before {
    box-sizing: border-box;
  /*   -moz-box-sizing: border-box; Firefox */
}

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
}

*:link, *:visited {
    color: #003630;
}

img {
    width: 100%;
}

li {
    list-style: none;
}

body {
  background-color: #F2F5F2;
  font-size: 18px;
  color: #003630;
 /* font-family: Untitled; */
  line-height: 1.5;
}

header {
    padding-left: 3em;
    padding-right: 3em;
    display: flex;
    max-width: 70%;
    margin: 0 auto;
    align-items: center;
    position: absolute;
    top: 2em;
    left: 0;
    right: 0;

}

h1 {
    font-size: 1.6em;
    font-family: Barlow;
    border-bottom: 4px solid #FF7B7B;
    text-transform: uppercase;
}

nav {
    margin-left: auto;
    display: none;
}

.container-hero {
    max-width: 70%;
    margin: 3em auto 0;
    text-align: left;

}

.hero {
    display: grid;
    align-items: center;
    height: 45em;
    background: url(../img/beethoven.png);
        background-position-x: 0%;
        background-position-y: 0%;
        background-repeat: repeat;
        background-size: auto auto;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    margin-bottom: 15vh;
    position: relative;
}

.container-hero div {
    margin-top: 0;
    align-items: center;

}

.hero > .section-left {
    align-self: center;
    margin-top: -75%;
    font-family: Barlow;
    line-height: 1;
    margin-left: 8vw;
}

.hero-p {
    font-size: 1.7em;
    margin-bottom: .5em;
}

.hero-title {
    font-size: 5em;
    text-transform: uppercase;
}

section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3em;
  
}

.line {
    height: 2.6em;
    width: 2px;
    background: #003630;
    left: 3em;
    top: 71vh; /* bottom:2em; */
    position: absolute;
    opacity: .8;
    animation-name: line;
    animation-fill-mode: both;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes line { 
    from {height: 0}
    to{height: 50px}
}

.container {
  text-align: left;
  max-width: 70%;
  margin: 0 auto;
  padding-left: 3em;
  padding-right: 3em;
}

.container  h3 {
  grid-column: 1 / -1;
  grid-row: 1 / 2;
  text-align: center;
  font-size: 64px;
  font-family: Barlow;
}

.container h3::after {
  content: "";
  display: block;
  width: .7em;
  height: 8px;
  background-color: #003630;
  margin: 0 auto;
}

.section-left, .section-right, h3 {
    margin-top: 3em;
}



.section-left {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.section-right {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}


.quotation {
    display: block;

}

h4 {
   font-size: 2.5em;
   font-family: Barlow;
   text-align: left;
   margin-bottom: .5em;
 /*  border-bottom: 2px solid #003630;
   padding-bottom: .3em;
   width: 50%; */

}
/*
h4::after {

    content: "";
    display: absolute;
    width: 30%;
    height: 4px;
    background: #F31212;
    top: 10px;
    position: relative;
    left: 0;
    margin: 0;
    display: block;

} */

.composition-list {
    margin-top: 2em;
}

.composition-list a {
    font-size: 1.5em;
    font-family: Barlow;
    cursor: pointer;
    position: relative;
}

.composition-list li {
    margin-top: 1em;
}

.composition-list a::before {
    content: '';
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    z-index: -1;
    -webkit-transition: height 0.3s;
    transition: height 0.3s;
    background-color: #F31212;
}

.composition-list a:hover::before, .composition-list a:active::before, .composition-list a:focus::before {
    height: 50%;
}

.compositions > .section-left {
    margin-top: 0; 
}

footer {
    text-align: center;
    margin: 8em auto;
}

footer > a {
    font-size: 5em;
    font-family: Barlow;
    border-bottom: 4px solid #003630;
    text-transform: uppercase;
    transition: opacity 0.5s;
}

footer > a:hover {
    opacity: .7;
}

footer p {
    margin-top: 4em;
    font-family: Barlow;
    font-size: 1em;
}

.profile-link {
    transition: opacity 0.5s;
    border-bottom: 1px solid #003630;
}

.profile-link:hover {
    opacity: .7;
}

.composition-image-lis img {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 450px) {
    .hero-p {
        font-size: 18px;
    }

    .hero-title {
        font-size: 45px;
    }

    footer > a {
        font-size: 36px !important;
    }
    
    footer {
        padding: 0em 3em;
    }
}


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

    .hero {
        background: none;
        height: unset;
    }

    .hero > .section-left {
        padding-left: 3em;
    }
    
    .hero-title {
        font-size: 4em;
    }

    footer > a {
        font-size: 36px !important;
    }
    
    footer {
        padding: 0 3em;
    }

    .hero-p {
        font-size: 18px;
    }

    .hero-title {
        font-size: 45px;
    }

}

@media only screen and (max-width: 560px) {
    .composition-list a:hover::before, .composition-list a:active::before, .composition-list a:focus::before {
        height: 0;
    }
}

/* ??? 740 --> 960px ??? */
@media only screen and (max-width: 940px) {
  
    section {
        display: flex !important;
        flex-direction: column;
    }

    .container-hero, header, .container {
        max-width: 100%;
    }

    .composition-p {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero > .section-left {
        padding-left: 3em;
    }

    
    header {
        padding-left: 3em !important;
    }

    footer > a {
        font-size: 36px !important;
    }

    .hero {
        margin-bottom: 6vh;
    }

}


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

    section {
        display: flex !important;
        flex-direction: column;
    }

    .composition-images img {
        margin-top: 3em;
        margin-left: 0;
    }

    .composition-list {
        text-align: center;
    }

    .composition-p {
       /* max-width: 80%; */
        margin: 0 auto;
    }

    .line {
        display: none;
    }

    .about > .section-right {
        margin-top: 1.5em;
    }

    section > h3 {
        margin-top: 1em;
    }

    .hero > .section-left {
        align-self: center;
        margin-top: 18%;
        font-family: Barlow;
        line-height: 1;
        margin-left: 0;
    }

    header {
        padding-left: 0;
    }

    footer > a {
        font-size: 3em;
    }

}


audio:hover, audio:focus, audio:active {
    -webkit-box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.4);
    box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.4);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

audio {
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -moz-box-shadow: 2px 2px 4px 0px #006773;
    -webkit-box-shadow: 2px 2px 4px 0px #006773;
    box-shadow: 2px 2px 4px 0px #006773;
    -moz-border-radius: 7px 7px 7px 7px;
    -webkit-border-radius: 7px 7px 7px 7px;
    border-radius: 7px 7px 7px 7px;
    width: 75%;
    margin: 4em auto 0;
}

.flex {
    display: flex;
}

/* Slider */

.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

#content {
  max-width: 650px;
  margin: 3rem auto;
  text-align: center;
}

#featured_img img,
#thumb_img img {
  max-width: 100%;
}

#thumb_img {
  margin-top: 2%;
}
#thumb_img img {
  float: left;
  max-width: 32%;
  width: 22.5%;
  cursor: pointer;
  margin-right: 2%;
  border: 2px solid #eee;
  box-sizing: border-box;
}
#thumb_img img.active {
  border: 2px solid #cac6b8;
}
#thumb_img img:last-child {
  margin-right: 0;
}
