/* System Theme
   ========================================================================== */

@media (prefers-color-scheme: dark) {
  html {
    background-color: #333333;
    color: #ffffff;
  }

  a {
    color: #00b8e6;
  }
}

@media (prefers-color-scheme: light) {
  html {
    background-color: #ffffff;
    color: #333333;
  }

  a {
    color: #008cc4;
  }
}

/* ========================================================================== */

body {
  display: flex;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji';
}

p {
  margin: 8px 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  position: relative;
}

.title {
  margin: 0;
}