* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.logo {
  max-height: 80vh;
  max-width: 90vw;
  object-fit: contain;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
}

footer {
  background-color: #eee;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: #333;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  text-decoration: underline;
}

.home-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
}

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