body {
  max-width: 600px;
  margin: auto;
  line-height: 1.5;
  font-size: 18px;
  padding: 1rem;
}

body.dark {
  background-color: #1a1a1a;
  color: #e6e6e6;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #1a1a1a;
    color: #e6e6e6;
  }

  body code {
    background-color: rgb(51, 51, 51);
  }

  body pre {
    background-color: rgb(51, 51, 51);
  }
}

nav {
  padding: 8px 0;
  display: flex;
}

nav a {
  margin-right: 8px;
}

nav #dark-mode-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

nav #dark-mode-toggle {
  cursor: pointer;
}

.posts ul {
  display: flex;
  flex-direction: column;
  padding: 0;
}

a {
  text-decoration: none;
  color: #8e1ece;

  &:hover {
    color: #7f11bf;
  }
}

.created {
  opacity: 0.8;
  font-style: italic;
}

code {
  background-color: rgb(233, 233, 233);
  font-size: 1rem;
  overflow-x: scroll;
  padding: 5px;
  border-radius: 5px;
}

body.dark code {
  background-color: rgb(51, 51, 51);
}

pre {
  background-color: rgb(233, 233, 233);
  overflow-x: scroll;
  border-radius: 5px;
}

body.dark pre {
  background-color: rgb(51, 51, 51);
}

video {
  width: 100%;
  border-radius: 5px;
}

.center-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
