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%;
}

.container{
  width: 80%;
  min-width: 576px;
  text-align: left;
  padding-top: 200px;
  z-index:100;
  }

#stock-info-container {
  text-align: left;

}

#stock-info {
  padding-top: 20px;
  padding-bottom: 10px;
}

a {
  color: #99ccff;
  text-decoration: none;
}

/* For mobile devices */
@media only screen and (max-width: 768px) {
  .content {
    font-size: 4rem;
  }
  /* Breakpoint info: For devices with a screen width of up to 768 pixels */
}

/* For tablets and iPads */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content {
    font-size: 2rem;
  }
  /* Breakpoint info: For devices with a screen width between 768 and 1024 pixels */
}

/* For desktop view */
@media only screen and (min-width: 1024px) {
  .reflective,
  .content {
    display: inline-block;
    vertical-align: middle;
  }
  .reflective {
    text-align: center;
  }
  .content {
    text-align: left;
    font-size: 1.5rem;
  }
  /* Breakpoint info: For devices with a screen width greater than 1024 pixels */
}