@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #222;
  font-family: "Poppins", serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(/img/pix2med.png);
  background-position: 0 0;
  animation: animated-bg 10s linear infinite;
}

h1,
small {
  color: #f3f3f3;
}

h1 {
  padding-bottom: 2rem;
  font-size: clamp(2rem, 6vw + 1.5rem, 4rem);
}

small {
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 1rem);
  font-weight: 100;
}

/************************************** ANIMATION **************************************/

@keyframes animated-bg {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 198px;
  }
}
