body{
      font-family: "Arial";
      padding: 2rem;
      color:#020202;
      background:#e5e5e5;
    }

h1{
  margin-top:2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 40pt;
  font-weight: 800;
  font-style: normal;
}

 
.montserrat {
  font-family: "Montserrat", sans-serif;
  /*font-optical-sizing: auto;*/
  font-weight: 300;
  font-style: normal;
}

.wavy {
  animation-name: wavy;
  animation-duration: 1.3s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  position: relative;
  top: 0;
  left: 0;
}
@keyframes wavy {
  0% {
    top: 0px;
  }
  50% {
    top: -10px;
  }
  100% {
    top: 0px;
  }
}