/*/// File Handling*/

@font-face {
  font-family: "variable";
/*/// Insert here your font file name*/
  src: url("0-fonts/GTVAR–ELYSIUMGX.woff2") format("woff2-variations");
  font-weight: 1 1000;
}

/*/// Color Settings*/

body {
  background-color: 2f432a;
}

.cover {
  background-color: 7a8554;
}

.header {
  color:e4e2ad;
}

.title {
  color:fcf552;
}

.footer {
  color:e4e2ad;
}


/*/// Font Settings*/

/*/// Desktop*/

.header {
  font-size: 1.5vw;
  text-align: LEFT;
}

.title {
  font-size: 7vw;
  line-height: .8em;
  text-align: center;
}

.left {
  text-align: left;
  font-size: 22vw;
}

.right {
  text-align: right;
  font-size: 15vw;
}

.letters {
  text-align: center;
  font-size: 10vw;
}
.shriftove {
  text-align: center;
  font-size: 15vw;
}
.footer {
  font-size: 1.5vw;
  text-align: RIGHT;
}

/*/// Mobile*/

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

  .header {
    font-size: 3vw;
  }

  .title {
    font-size: 18vw;
    line-height: .8em;
  }

  .footer {
    font-size: 3vw;
  }

.left {
  text-align: left;
  font-size: 44vw;
}

.right {
  text-align: right;
  font-size: 30vw;
}

.letters {
  text-align: center;
  font-size: 20vw;
}
.shriftove {
  text-align: center;
  font-size: 30vw;
}
}

/*/// Animation*/

.title {
  transition: font-variation-settings 0.3s ease;
  animation-name: variable-animation;
  animation-duration: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;  
}

@keyframes variable-animation {
  from {
    font-variation-settings: "wght" 1;
  }
  to {
    font-variation-settings: "wght" 1000;
  }
}