/* Reset default margin and height */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Center content using Flexbox */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Stack header and subheader vertically and center text */
.content {
    text-align: center;
}

/* Styling for the header */
h1 {
    font-size: 3rem;
      font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
    margin: 0;
}

/* Styling for the subheader */
h2 {
    font-size: 1.5rem;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
    margin-top: 0.5rem;
    color: #555;
}




