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

html, body {
  height: 100%;
}

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

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 32px 20px;
}

.logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
}

.tagline {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #888;
}

.headline {
  font-size: 28px;
  font-family: Georgia, serif;
  font-weight: bold;
  color: #2d6a1a;
  line-height: 1.3;
}

@media (max-width: 480px) {
  .logo {
    width: 200px;
    height: 200px;
  }

  .headline {
    font-size: 22px;
  }
}
