@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@keyframes animate-type {
  0% {
   
    transform-origin: 0 0;
    font-variation-settings: "wght" 400, "slnt" 0;
    letter-spacing: 0;
  }
  
  100% {
 
  transform-origin: 0 0;
  font-variation-settings: "wght" 900, "slnt" -5;
  letter-spacing: 5px;
  }
}

body {
  
  font-family: Inter;
  font-size: 24px;
  line-height: 1.5;
  
  background-color: #fff;
  background-image: url(background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  
  color: #000;
  
}

header {
  position: fixed;
  top: 64px;
  left: 64px;
  
  font-weight: 700;
  font-size: 48px;

  animation: animate-type 3s infinite alternate;
}



footer {
  position: fixed;
  bottom: 64px;
  left: 64px;
}

@media(max-width:440px) {
  
  header,
  footer {
    max-width: 400px;
  }
  
}