html, body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Futura, sans-serif;
  height: 100%;
}

main {
  width: 100%;
  max-width: 800px;
  min-height: 90vh; /* Makes sure the content takes at least the full viewport height */
  display: flex;
  line-height: 2;
  font-size: 18px;
  flex-direction: column;
  justify-content: space-between; /* Distributes content evenly */
}

.starter{
  text-align: center;
  margin: 20px 0px;
  margin-top: 7.5%;
  margin-bottom: 2%;
}

#canvas {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.first {
  text-align: justify;
  margin: 20px 40px;
  margin-bottom: 2%;
}

.second {
  text-align: center;
  margin: 20px 40px;
  margin-bottom: 5%;
}

/* Ensure text does not go too wide */
.first, .second {
  max-width: 800px;
  width: 90%;
}

.note{
  font-size: 0.85 em;
  font-style: italic;
  margin: 0px 0px;
  text-align: center;
}


/* Adjustments for smaller screens */
@media (max-width: 600px) {
  .first, .second {
    font-size: 18px;
    margin: 15px auto;
  }
}
