* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
/*   font-family: "Gentium Plus", serif; */
  font-family: "Alegreya", serif;
  background-color: white;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; /* Chrome, Safari */
    -moz-osx-font-smoothing: grayscale; /* Firefox on macOS */
    font-feature-settings: "liga" 1, "kern" 1;

}

.main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  margin: 0 auto;
  min-height: 100vh;
  background-color: white;
}

.message-section {
  margin: auto;
  text-align: center;
  max-width: 100%;
  padding: 0 1.25rem;
}

.title {
  margin-bottom: 0.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: black;
  white-space: nowrap;
}

.subtitle {
  font-size: 1.875rem;
  color: black;
  white-space: nowrap;
}

.subtitle em {
  font-style: italic;
}

.footer {
  position: fixed;
  bottom: 35px;
  font-size: 0.875rem;
  text-align: center;
  color: black;
}

/* Media Queries */
@media (max-width: 991px) {
  .title,
  .subtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .message-section {
    padding: 0 1rem;
    max-width: 100%;
  }

  .title {
    font-size: 1rem;
    margin-bottom: 0.125rem;
  }

  .subtitle {
    font-size: 1rem;
    white-space: nowrap;
  }

  .footer {
    bottom: 1.25rem;
    font-size: 0.75rem;
  }
}
