/* css/styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'IBM Plex Mono', monospace;
  background-color: #0a0a0a;
  color: #fff;
  min-height: 100vh;
}

.dark {
  color-scheme: dark;
}

.main-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
}

.content {
  max-width: 42rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.625;
}

h1 {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 2.5rem;
  letter-spacing: -0.02em;
}

p {
  font-size: 1rem;
  font-family: 'IBM Plex Mono', monospace;
}

.navigation,
.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-family: 'IBM Plex Mono', monospace;
}

.link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 150ms ease;
  font-family: 'IBM Plex Mono', monospace;
}

.link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .main-container {
    padding: 32px 16px;
  }

  h1 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .content {
    gap: 0.75rem;
  }
}
