/* Reset + base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.landing-container {
  text-align: center;
  padding: 2rem;
}

.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.info-text {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.redirect-button {
  display: inline-block;
  background-color: #065521;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.redirect-button:hover {
  background-color: #05461d;
}