body {
  font-family: 'Segoe UI', sans-serif;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  min-height: 100vh;
  margin: 0;
  background: #1c2127;
  color: #dadada;

  --blue: #2e80f2;
  --pink: #ff82b2;
  --green: #3eb4bf;
  --yellow: #e5b567;
  --orange: #e87d3e;
  --red: #e83e3e;
  --purple: #9e86c8;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 2rem;
}

h3 {
  color: var(--blue);
}

h4 {
  color: var(--yellow);
}

h5 {
  color: var(--red);
}

h6 {
  color: #bec6cf;
}

/* Bold and Italic text */
strong, em {
  color: var(--pink);
}

table {
  border-collapse: collapse;
}

th, td {
  border: 1px solid #35393e;
  padding: 8px;
  text-align: left;
}

ul {
  padding-left: 1.5rem;
}

ul li::marker {
  color: #5d6d7e;
}

a {
  color: #afcbf4;
}

.title {
  font-size: 3rem;
  max-width: 1024px;
  text-align: center;
}

.content {
  max-width: 1024px;
  padding-left: 1rem;
  padding-right: 0.5rem;
  width: 100%;
}

.content img {
  width: 100%;
}

.sidebar {
  width: 220px;
  background: #37414d;
  padding: 1rem;
  min-height: 100vh;
  font-size: 1rem;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar li {
  padding: 0.25rem;
}
.sidebar li a {
  display: block;
  padding: 0.5em;
  background-color: #4b5563;
  border-radius: 0.375rem;
}

.sidebar li.active a {
  font-weight: bold;
  color: #0074d9;
  background-color: #49505b;
}

@media (max-width: 600px) {
  body {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    min-height: unset;
    font-size: 1rem;
    padding: 0.5rem;
    box-sizing: border-box;
  }
  .content {
    max-width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
