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

body {
  min-height: 100vh;
  background: #FBFFFA;
  font-family: 'Geologica', sans-serif;
  color: #262827;
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 20px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

h1 {
  font-family: 'Geologica', sans-serif;
  font-weight: 900;
  font-size: 48px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.subtitle {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
}

.cta {
  position: absolute;
  bottom: 40px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-decoration: none;
  color: #000;
  padding: 8px 0;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.cta:hover::after {
  width: 0;
}

@media (max-width: 768px) {
  


 
  
}
