@font-face {
  font-family: 'Nationale';
  src: url('../f/Nationale-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

:root {
  --bg-color: #FAFAF9;
  --tagline-bg: rgba(255, 255, 255, 0.8);
  --tagline-text: #6E7189;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #191A1A;
    --tagline-bg: rgba(31, 33, 33, 0.8);
    --tagline-text: #E8E8E4;
  }
}

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

body {
  min-height: 100vh;
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nationale', sans-serif;
  transition: background-color 0.3s ease;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.logo {
  width: 136px;
  height: 32px;
  display: block;
}

.tagline {
  padding: 12px 20px;
  background-color: var(--tagline-bg);
  border-radius: 8px;
  color: var(--tagline-text);
  text-align: center;
  font-family: Nationale, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-link {
  color: var(--tagline-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.contact-link:hover {
  opacity: 1;
  color: #6287CF;
}
