@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Edu+AU+VIC+WA+NT+Dots:wght@400..700&family=Sacramento&family=Science+Gothic:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Edu+AU+VIC+WA+NT+Dots:wght@400..700&family=Righteous&family=Sacramento&family=Science+Gothic:wght@100..900&display=swap');

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

body {
  font-family: 'EB Garamond', serif;
  background: black;
  color: white;
  height: 100vh;
}

.landing {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.landing-content {
  text-align: center;
}

.landing-logo {
  width: 140px;
  margin-bottom: 20px;
}

.tagline {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.enter-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.enter-btn:hover {
  background: white;
  color: black;
}