/*/// File Handling*/

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

/*/// Color Settings*/

body {
  background-color: #636968;
}

.cover {
  background-color: #ad4d37;
}


.title {
  color:#d9a99e;
}

.footer {
  color:#d9a99e;
}


/*/// Font Settings*/

/*/// Desktop*/


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

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

/*/// Mobile*/

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



  .title {
    font-size: 35vw;
    line-height: .88em;
  }

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

/*/// Animation*/

.title {
  transition: font-variation-settings 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" 1300;
  }
}