body {
  margin: 0;
  background-color: rgb(2, 16, 41);
}

.body{
  font-family: 'Quicksand', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

.text-wrapper {
  position: relative;
  font-weight: 700;
}

.body .text-inner {
  position: absolute;
  top: 0;
  left: 0;
}

.body #first-layer {
  font-size: 9rem;
  color: rgb(255, 84, 79);
  text-shadow: 3px 5px rgb(2, 17, 41);
  z-index: 300;
  letter-spacing: 1rem;
}

.body #first-wave-layer {
  font-size: 9rem;
  z-index: 300;
  letter-spacing: 1rem;
  background: url('./wave.svg');
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.body #second-layer {
  font-size: 9.9rem;
  color: rgb(36, 82, 255);
  text-shadow: 3px 5px rgb(2, 17, 41);
  z-index: -1;
  letter-spacing: .5rem;
}

.body #third-layer {
  font-size: 10.8rem;
  color: rgb(251, 239, 152);
  text-shadow: 3px 5px rgb(2, 17, 41);
  z-index: -2;
}

.body .button {
  margin-top: 100px;
  color: #F12D21;
  text-align: center;
  border: 1px solid #F12D21;
  width: 90px;
  padding: 7px 10px;
  text-decoration: none;
}
.body .button .arrow {
  margin-bottom: -.15rem;
  height: 1rem;
  width: 1rem;
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-image: url('./chevron-right.svg');
}
