/*/// File Handling*/

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

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

/*/// Color Settings*/

body {
  background-color: #222;
}

.cover {
  background-color: white;
}

.header {
  color:black;
}

.title {
  Color:black;
  margin-left: 2vw;
}

.title2 {
  font-family: "frieden";
  margin-top: .0em;
}

.footer {
  color:black;
}


/*/// Custom Settings*/

.container .cover .title {
  top: 33%;
}

/*/// Font Settings*/

/*/// Desktop*/

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

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

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

/*/// Mobile*/

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

  .header {
    font-size: 3vw;
  }

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

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

/*/// 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;
  }
}