html {
   overflow: hidden;
}
body {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: black;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
p{
	font-family: 'TINY5';
  color: white;
  font-size: 24rem;
  font-variation-settings: 'wght' 20;
  line-height: 0.5;
  margin: 0;
}
span {
  transition: all .3s ease-in-out;
  cursor: pointer;
}
span:hover {
  font-variation-settings: 'wght' 180;
}

#M {
  transform-origin: center;
  animation: my-moma .3s 0s infinite alternate;
}

#o {
  transform-origin: center;
  animation: my-moma .3s 0.1s infinite alternate;
}
#M2 {
  transform-origin: center;
  animation: my-moma .3s 0.2s infinite alternate;
}
#A {
  transform-origin: center;
  animation: my-moma .3s 0.3s infinite alternate;
}

/* ipad */
@media (max-width: 1024px) {
  @keyframes my-moma {
    from {
      font-variation-settings: 'wght' 20;
    }
    to {
      font-variation-settings: 'wght' 180;
    }
  } 
}
