/* Apply flexbox to the body */
body {
  background-color: #000;
  color: #fff;
  font-family: 'Comfortaa', sans-serif;
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100vh; /* Full viewport height */
}

/* Make the main content area take up all available space */
main {
  flex: 1;
}

img {
  max-width: 90%;
  height: auto;
  margin: 1rem 0;
}

/* Footer styling */
footer {
  padding: 1rem;
  background-color: #000;
  color: #555;
  font-size: 0.6rem;
  text-align: center;
}
