:root {
  color-scheme: light;
  --bg: #F5EDE3;
  --panel: #F5EDE3;
  --text: #111827;
  --muted: #4b5563;
  --accent: #111827;
  --accent-2: #111827;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.logo {
  width: 280px;
  height: auto;
}

h1 {
  display: none;
}

p {
  display: none;
}

.social-links {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--text);
  text-decoration: none;
  transition: transform 200ms ease, opacity 200ms ease;
  opacity: 0.8;
}

.social-link svg {
  width: 32px;
  height: 32px;
}

.social-link:hover,
.social-link:focus-visible {
  transform: scale(1.1);
  opacity: 1;
}

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

  .social-links {
    gap: 24px;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }

  .social-link svg {
    width: 28px;
    height: 28px;
  }
}
