@import url('https://fonts.googleapis.com/css?family=Rakkas|Roboto+Mono&display=swap');

* {padding:0; margin:0;}

body {
  font-family: 'Roboto Mono', monospace;
}

article {
  position: relative;
  overflow: hidden;
}

footer {
  text-align: center;
  padding: 30px 0;
}

@media only screen and (max-width: 480px) {
  footer {
    text-align: center;
    padding: 30px 0;
    font-size: 4vw;
  }
}

ul {
  list-style: none;
}

/*--------------IMAGE--------------*/

.imagecenter {
  width: 95%;
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
}

@media only screen and (max-width: 480px) {
  .imagecenter {
    width: 95%;
  }
}

@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
   }
}

/*--------------TEXT--------------*/

.text{
  width: 640px;
  max-width: 90%;
  padding: 20px 0;
  display: block;
  margin: auto;
  /* border: 1px blue solid; */
}

  textleft {
    text-align: left;
  }

  .textright {
    text-align: right;
  }

h1 {
  font-family: 'Rakkas', serif;
  font-style: normal;
  font-weight: normal;
  font-size: 50px;
  line-height: 105%;
  text-align: center;
  letter-spacing: 0.07em;
}

h2 {
  font-family: 'Rakkas', serif;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 180%;
  text-align: justify;
  letter-spacing: 0.05em;
}

h3 {
  font-family: 'Rakkas', serif;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0.05em;
  margin-top:10px;
}

h4 {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0.05em;
  margin-top:5px;
  text-transform:uppercase;
}

p {
  font-size: 16px;
  line-height: 190%;
  text-align: justify;
  padding: 20px 0;
  /* border: 1px black solid; */
}

a {
  text-transform: uppercase;
}

  a:hover {
    text-decoration: line-through;
  }

@media only screen and (max-width: 480px) {
  .text {
    width: 80%;
  }
  h1 {
    font-size: 9vw;
  }
  h2 {
    font-size: 6vw;
  }
  h3 {
    font-size: 5.3vw;
  }
  h4 {
    font-size: 3.5vw;
  }
  p {
    font-size: 4vw;
  }
}

/*--------------POSITIONING--------------*/

#wrapper {
  max-width: 1500px;
  position: relative;
  margin: auto;
  overflow-x:hidden;
}

.center {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

/*--------------SCROLL--------------*/

.scrollTop {
  position: fixed;
  right: 12px;
  top: 30px;
  padding: 5px 10px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out 0s;
  z-index: 999;
  transform: rotate(90deg);
}

@media only screen and (max-width: 480px) {
  .scrollTop {
    right: 5px;
    top: 20px;
    font-size: 4vw;
  }
}

.scrollTop a {
  color: #1D1D1D;
}

/*--------------IMAGE ANIMATION--------------*/

.moveY {
  transform: translate3d(0,80px,0);
  -webkit-transform: translate3d(0,80px,0);
  will-change: transform;
  transform: translateZ(0px);
}

  .come-in-y {
    animation: come-in-y 0.85s ease forwards;
  }
  .come-in-y:nth-child(odd) {
    animation-duration: 0.5s; /* So they look staggered */
  }

.moveL {
  transform: translate3d(-60px,0,0);
  -webkit-transform: translate3d(-60px,0,0);
  will-change: transform;
  transform: translateZ(0px);
}

  .come-in-l {
    animation: come-in-x 0.85s ease forwards;
  }
  .come-in-l:nth-child(odd) {
    animation-duration: 0.5s; /* So they look staggered */
  }

.moveR {
  transform: translate3d(50px,0,0);
  -webkit-transform: translate3d(50px,0,0);
  will-change: transform;
  transform: translateZ(0px);
}

  .come-in-r {
    animation: come-in-r 0.85s ease forwards;
  }
  .come-in-r:nth-child(odd) {
    animation-duration: 0.5s; /* So they look staggered */
  }

@keyframes come-in-y {
  to { transform: translate3d(0,0,0); -webkit-transform: translate3d(0,0,0);}
}

@keyframes come-in-x {
  to { transform: translate3d(0,0,0); -webkit-transform: translate3d(0,0,0);}
}

@keyframes come-in-r {
  to { transform: translate3d(0,0,0); -webkit-transform: translate3d(0,0,0);}
}

/*--------------MENUS-------------*/

.menusvg {
  position: fixed;
  left: 22px;
  top: 22px;
  -webkit-transform:translateZ(0.00002px);
  overflow: visible;
  z-index: 9999;
}

  .menusvg svg {
    position: relative;
    overflow: visible;
    display: block;
    margin: auto;
    z-index: 9999;
    }

  .menuiconbg {
    position: absolute;
    z-index: 9998;
  }

  .menusvg:hover, .menuiconbg:hover {
    cursor: pointer;
  }

  .menusvg:active {
    opacity: 0.5;
  }

@media only screen and (max-width: 480px) {
  .menusvg {
    width: 48px;
    height: 48px;
    left: 10px;
    top: 12px;
  }
  .menusvg svg {
    width: 34px;
  }
}

#myNav {
  height: 0;
  width: 100%;
  -webkit-transform:translateZ(0.00002px);
}

  .nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9000;
    height: 0;
    width: 100%;
    text-align: center;
    padding-top: 0px;
    margin: auto;
    overflow-x: hidden;
    transition:  0.5s;
  }

  #navcontent {
    position: relative;
    top: 20%;
    width: 100%;
  }

  .nav a, .selected {
    width: 100%;
    padding: 10px 0;
    margin: 10px 0;
    text-decoration: none;
    font-size: 20px;
    display: block;
    transition: 0.3s;
    text-transform: none;
    letter-spacing: 0.1em;
  }

    .nav a:hover {
      text-decoration: line-through;
      opacity: 0.5;
    }
    .nav a:active {
      opacity: 0.2;
    }

    .selected {
      text-decoration: line-through!important;
      cursor: default;
    }

    .nav .credit, .nav .credit a{
      font-size: 11px;
      color: rgba(255, 255,255, 0.6)!important;
    }

      .nav .credit {
        position:fixed;
        bottom: 0px;
        width: 100%;
        text-align: center;
        opacity: 0;
        padding: 40px 0;
      }
      .nav .credit a {
        padding: 0;
        margin: 0;
        display: initial;
        text-decoration: underline;
        padding: 40px 0;
      }

@media only screen and (max-width: 480px) {
  .nav a, .selected {
    padding: 25px 0px;
    font-size: 5vw;
  }
  #navcontent {
    top: 10%;
  }
  .nav .credit, .nav .credit a{
    font-size: 3.5vw;
    padding: 40px 0;
  }
}

/*--------------MUSIC PLAYER--------------*/

#myProgress {
  width: 420px;
  cursor: pointer;
}

#myBar {
  width: 0%;
  height: 5px;
  opacity: 1;
}

.btn-action{
  cursor: pointer;
  padding-top: 10px;
  width: 30px;
}

.btn-ctn, .infos-ctn{
  display: flex;
  align-items: center;
  justify-content: center;
}

.infos-ctn{
  padding-top: 20px;
}

.btn-ctn > div {
 padding: 5px;
 margin-top: 18px;
 margin-bottom: 18px;
}

.infos-ctn > div {
 margin-bottom: 12px;
}

.first-btn{
  margin-left: 3px;
}

.duration{
  margin-left: 10px;
}

.title{
  margin-left: 10px;
  width: 210px;
  text-align: center;
}

.player-ctn{
  width: 420px;
  margin:auto;
}

.playlist-track-ctn{
  display: flex;
  background-color: none;
  margin-top: 3px;
  cursor: pointer;
  padding-left: 10px;
}

.playlist-track-ctn > div{
  margin:10px 10px 10px 5px;
}

.playlist-info-track{
  width: 100%;
  text-align: left;
}

.playlist-info-track,.playlist-duration{
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 14px;
  pointer-events: none;
}
.playlist-ctn{
   padding-bottom: 20px;
}
.active-track{
  font-weight: bold;
}

.playlist-track-ctn > div i {
  display: none;
}

.playlist-btn-play{
  pointer-events: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

.fas{
  color: #1D1D1D;
}

@media only screen and (max-width: 480px) {
  .player-ctn{
    width: 90%;
  }
  #myProgress {
    width: 100%;
  }
  .playlist-info-track,.playlist-duration{
    font-size: 3.5vw;
  }
  .title{
    width: 100%;
  }
  .title, .duration, .timer {
    font-size: 4vw;
  }
  .playlist-track-ctn > div{
    margin:10px 10px 10px -5px;
  }
}
