body {
  font-family: "Courier New", monospace;
  font-size: 6.5px;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
}

#ascii-container {
  max-width: 100vw;
  overflow: hidden;
  white-space: nowrap;
  width: 375px;
}

#main-message {
  width: 375px;
  max-width: 80vw;
  font-size: 40px;
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
}

#smaller {
  font-size: 18px;
}

#secondary-message {
  font-size: 20px;
  position: absolute;
  width: 375px;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  max-width: 80vw;
}

/* Screens larger then 400px */
@media (min-width: 410px) {
  body {
    font-size: 7.2px;
  }
  #ascii-container {
    width: 410px !important;
  }
}

/* Screens larger then 500px */
@media (min-width: 510px) {
  body {
    font-size: 9.2px;
  }
  #ascii-container {
    width: 510px !important;
  }

  #main-message {
    font-size: 50px;
  }

  #secondary-message {
    font-size: 25px;
  }

  #main-message,
  #secondary-message {
    width: 510px;
  }
}

/* Screens larger then 720px */
@media (min-width: 720px) {
  body {
    font-size: 13px;
  }
  #ascii-container {
    width: 720px !important;
  }

  #main-message {
    font-size: 60px;
  }

  #secondary-message {
    font-size: 30px;
  }

  #main-message,
  #secondary-message {
    width: 600px;
  }
}
