@font-face {
  font-family: inter;
  src: url(inter-var.woff);
}

@keyframes animate-type {
  0% {
    font-variation-settings: 'wght' 200, 'slnt';
    letter-spacing: 0;
  }
  100% {
    font-variation-settings: 'weight' 400, 'slnt' -8;
    letter-spacing: 10px;
  }
}

body {
  font-family: 'Inter';
  font-size: 16px;
  line-height: 1.5;

  background-color: #ffffff;
  background-size: contain;
  height: 100vh;
  color: #0000ff;
}

header {
  position: fixed;
  font-size: 10px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;

  transform: scale(1, 1);
  transform-origin: 0 0;
  animation: animate-type 2s infinite alternate;
}

@media (max-width: 1920px) {
  header {
    margin: 10px 50px 100px 110px;
    width: 100%;
    flex-direction: column;
    display: flex;
    font-size: 800px;
  }
}

@media (min-width: 360px) {
  header {
    margin: 10px 35px 90px 10px;
    width: 15%;
    flex-direction: column;
    display: flex;
    font-size: 36px;
  }
}

nav {
	font-size: 18px;
	font-weight: 700;
  text-decoration: none;
}

  a { text-decoration: none;
  }

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

