/* Reset margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Georgia, serif;
  background-color: #f8f8f8;
  color: #333;
}

/* Flexbox layout for horizontal centering, align content to the top */
body {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Align content to the top */
  min-height: 100vh;
}

/* Wrapper for content with some vertical padding for spacing */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; /* Horizontally center the content */
  text-align: center;
  max-width: 800px;
  margin-top: 20px; /* Add space from the top of the page */
  padding: 20px;
}

h1, h2 {
  font-family: Arial, sans-serif;
  font-variant: small-caps;
  color: #000;
  margin-bottom: 10px;
}

footer {
  margin-top: 20px;
}

img {
  display: block;
  margin: 10px auto;
}
