:root {
  --text: #1a191d;
  --text-active: #000;
  --background: #fff;
  --tile: #ddd;
  --tile-hover: #ccc;
  --accent: #ffc200;
  --accent-hover: #d7a911;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #ddd;
    --text-active: #fff;
    --background: #1a191d;
    --tile: #000;
    --tile-hover: rgb(23, 23, 23);
  }
}
#menu-button {
  position: absolute;
  top: 20px;
  right: 20px;
  display: none;
}
#menu-button.active {
  margin-top: 19px;
}
#menu-button.active span:nth-child(1) {
  transform: rotate(-45deg);
  top: 0;
  position: absolute;
}
#menu-button.active span:nth-child(2) {
  opacity: 0;
}
#menu-button.active span:nth-child(3) {
  transform: rotate(45deg);
  top: 0;
  position: absolute;
}
#menu-button span {
  height: 6px;
  width: 40px;
  margin-bottom: 10px;
  background-color: var(--text);
  display: block;
  transition: all 300ms ease-in-out;
}
#menu-button span:last-child {
  margin-bottom: 0;
}

menu {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--text);
  align-self: stretch;
  margin: 0;
  min-height: 100%;
  position: fixed;
  z-index: 1000;
}
menu a {
  color: var(--text);
  text-decoration: none;
  margin-left: 20px;
  padding: 10px 30px;
  font-size: 32px;
}
menu a.active {
  color: var(--text-active);
  font-weight: 500;
}

@media only screen and (max-width: 600px) {
  #menu-button {
    display: block;
  }
  menu {
    position: fixed;
    top: 0;
    bottom: 0;
    min-height: auto;
    width: 80%;
    left: -80%;
    background-color: var(--background);
    transition: all 300ms ease-in-out;
  }
  menu.open {
    left: 0;
  }
  .hbox {
    flex-direction: column;
  }
}
.page {
  flex: 1;
  margin-top: 100px;
  margin-bottom: 100px;
  padding-left: 30px;
  margin-left: 240px;
}

@media only screen and (max-width: 600px) {
  .page {
    margin: 20px;
    padding: 0;
  }
}
.button-bar {
  display: flex;
  flex-direction: row;
  align-items: end;
}

button {
  border-radius: 0;
  border: 0;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  margin-right: 20px;
  margin-bottom: 10px;
  cursor: pointer;
  margin-left: auto;
  display: block;
}
button.primary {
  background-color: var(--accent);
}
button.primary:hover {
  background-color: var(--accent-hover);
}
button.secondary {
  background-color: var(--tile);
  color: #fff;
}
button.secondary:hover {
  background-color: var(--tile-hover);
}
button:disabled {
  cursor: not-allowed;
}

body {
  background-color: var(--background);
  color: var(--text);
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "Poppins";
  display: flex;
  flex-direction: row;
}
body * {
  box-sizing: border-box;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 3px;
}
.tags a,
.tags span {
  background-color: var(--background);
  color: var(--text);
  width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  padding: 2px 0;
  border-radius: 5px;
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}
.tags a.active,
.tags span.active {
  background-color: var(--accent);
  color: #000;
}
.tags a.active:hover,
.tags span.active:hover {
  background-color: var(--accent-hover);
}
.tags a {
  background-color: var(--tile);
  text-decoration: none;
  color: var(--text);
}
.tags a:hover {
  background-color: var(--tile-hover);
}

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

@media print {
  body {
    background-color: transparent;
    color: #000;
  }
  button {
    display: none;
  }
}
.hbox {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid var(--text);
}
.hbox.no-stuff {
  border-bottom: none;
}
.hbox > * {
  flex: 1;
  padding-right: 30px;
  padding-left: 30px;
  border-right: 1px solid var(--text);
  margin-bottom: 15px;
  margin-top: 15px;
}
.hbox > *:last-child {
  padding-right: 0;
  border-right: 0;
}

@media only screen and (max-width: 600px) {
  body {
    padding: 0;
  }
  .hbox {
    flex-direction: column;
    border-bottom: 0;
  }
  .hbox > * {
    flex: 1;
    border-right: 0px solid var(--text);
    border-bottom: 1px solid var(--text);
    margin-bottom: 30px;
    padding: 30px 0;
  }
  .hbox > *:last-child {
    margin-bottom: 0;
    padding-bottom: 0px;
    border-bottom-width: 0px;
  }
}
.article {
  padding: 0 20px;
}
.article a {
  color: var(--text);
  font-weight: bold;
}

p span {
  color: var(--accent);
  font-weight: 800;
}

/*# sourceMappingURL=global.css.map */
