@import url('https://fonts.googleapis.com/css2?family=League+Script&family=Silkscreen:wght@400;700&display=swap');
body {
  font-family: Silkscreen;
  font-size: 60px;
  line-height: 10px;
  text-align: center;

  background-color: #13131a;
  color: #fff4f4;

  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

section {
  width: 1200px;

  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-auto-rows: 100px;
}

div {
  font-weight: 100;
  transform: scale(0.2);
  transition: transform 0.2s; 

}
