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

body {
  font-family: 'FOT-NewRodin Pro DB', sans-serif;
  background-color: black;
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  line-height: 1.6;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
  max-width: 600px;
}

.logo {
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1 {
  font-family: 'FOT-NewRodin Pro DB', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
}
h2 {
  font-family: 'FOT-NewRodin Pro DB', sans-serif;
  font-size: clamp(1.2rem, 4vw, 2rem);
}
h3 {
  font-family: 'FOT-NewRodin Pro DB', sans-serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
}

.cta-button {
  background-color: white;
  color: black;
  border: none;
  padding: 12px 32px;
  font-family: 'FOT-NewRodin Pro DB', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #88efff;
}

.small-button {
  background-color: white;
  color: black;
  border: none;
  padding: 12px 32px;
  font-family: 'FOT-NewRodin Pro DB', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}

.social-buttons a {
  display: flex;
  align-items: center;
}

.social-buttons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.social-buttons a:hover img {
  opacity: 0.7;
}