@font-face {
  font-family: 'Lexend';
  src: url('Lexend-Regular.woff2') format('woff2'); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Improves performance */
}

html, body {
  height: 100%;
  margin: 0;
}

p {
      font-family: "Lexend", sans-serif;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main content fills remaining space */
.main {
  flex: 1;
  display: flex;
  align-items: center;      /* vertical centering */
  justify-content: center;  /* horizontal centering */
}

.main img {
  max-width: 300px;
  object-fit: contain;
}

/* Footer stays at the bottom */
.footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer a {
  text-decoration: none;
}