body {
  font-family: sans-serif;
  text-align: left; 
  min-height: 100vh; 
  display: flex;
  align-items: center;
  justify-content: center; 
  margin: 0;
  padding-top: 10px;
  background-color: #fff9eb;
}

.content {
  padding-left: 5%; 
  padding-right: 5%; 
  font-size: 5em; 
  font-family: 'Lato', sans-serif;
}

.content p {
  margin-top: 0; 
  margin-bottom: 0;
}

@media (max-width: 768px) {
  body {
    text-align: left; /* Keep left alignment */
    display: flex; /* Change to block to allow scrolling from top */
    align-items: center; /* Align items to the top */
    justify-content: center; /* Align content to the start */
    padding-top: 10px; /* Adjust top padding for mobile */
    background-color: #fff9eb;
  }

  .content {
    padding-left: 10%; /* Increase padding for better spacing on mobile */
    padding-right: 10%; /* Increase padding for better spacing on mobile */
    font-size: 9vw; /* Reduce font size for better readability on mobile */
  }
}

a {
  color: #336699; 
  text-decoration: none; 
}

a:hover {
  text-decoration: underline; 
}


.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}