/*/// File Handling*/

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

/*/// Color Settings*/

body {
  background-color: rgb(100, 100, 100)
}

.cover {
  background-color:rgb(200, 200, 200)
}

.header {
  color:rgb(255, 255, 255);
  font-family: serif;
}

.title {
  color:rgb(255, 255, 255);
}

.footer {
  color:rgb(255, 255, 255);
  font-family: serif;
}


/*/// Font Settings*/

/*/// Desktop*/

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

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

.footer {
  font-size: 1.5vw;
  text-align: center;
}

/*/// Mobile*/

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

  .header {
    font-size: 3vw;
  }

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

  .footer {
    font-size: 3vw;
  }
}

/*/// Animation*/

.title {
  transition: font-variation-settings 0.3s ease;
  animation-name: variable-animation;
  animation-duration: 3s;
  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;
  }
}