body {
  font-family: 'Poppins', sans-serif;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  text-align: center;
  color: white;
  box-sizing: border-box;
  padding: 1rem;
}

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

h1 {
  position: relative;
  z-index: 10;
  font-size: 2rem; /* Default font size */
}

a {
  color: #99ccff;
  text-decoration: none;
}


/* For mobile devices */
@media only screen and (max-width: 768px) {
  .content {
    font-size: 3rem;
  }
}

/* For desktop view */
@media only screen and (min-width: 768px) {
  .reflective,
  .content {
    display: inline-block;
    vertical-align: middle;
  }
  .reflective {
    text-align: center;
  }
  .content {
    text-align: left;
  }
}
