/* Light theme */
@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
    --accent-bg: #f9ebb2
    

  }
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
  }
}

body > header {
  p {
    margin: 10px auto;
  };
  h5 {
    margin: 0;
  };
}

body > main {
  align-content: center;
  display: flex;
  flex-direction: column;
  img#diagram {
    margin: auto;
    max-width: 400px;
  }
}

body > footer {
  text-align: inherit;
  p {
    margin: 0;
  };
  ul {
    list-style: none;
  };
}

#channel {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#logs {
  white-space: pre;
  font-family: monospace;
  #date {
    font-weight: bold;
  }
  li {
    margin-bottom: 20px;
    opacity: 0.5;
    transition: 1s;
  }
  li:first-child {
    opacity: 1;
  }
  li::marker {
    color: grey;
  }
}
