body{
  font-family: specialelite-regular;
}

.container{
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.page{
  margin: 0.7vw;
  border: 5px dashed white;
}

.floating-text{
  width: 100px;
  height: 100px;
  background-color: green;
  position: relative;
  animation: float 3s ease-in-out infinite;

}

@keyframes float{
  0% {
    transform: translateY(0px)
  }
  
  50% {
    transform: translateY(20px)
  }
  
  100% {
    transform: translateY(0px)
  }
  
}  