:root {
  --bg-color: #000;
  --text-color: #fff;
  --text-color-secondary: #03ffff;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg-color: #fff;
    --text-color: #000;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #000;
    --text-color: #fff;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
}

a {
  font-weight: bold;
  color: var(--text-color);
}

a:active {
  color: var(--text-color);
}

a:hover {
  color: var(--text-color-secondary);
}

.hero {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100dvh;
}

.projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem 0;
}

.content-wrapper {
  padding: 2rem;
  max-width: 60%;
}
