body {
  background-color: #121212;
  color: #e4e2dd;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* This distributes space better */
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
}

.container {
  text-align: center;
  flex-grow: 1; /* Allow container to take available space */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 300px;
  margin-bottom: 20px;
}

.contact-link {
  color: #e4e2dd;
  text-decoration: none;
  font-size: 14px;
}

.contact-link:hover {
  text-decoration: underline;
}

footer {
  width: 100%;
  text-align: center;
  font-size: 12px;
  padding: 20px 0;
}