:root {
  --gray-1: #3f3f3f;
  --gray-2: #32353a;
  --gray-3: #25282c;
  --gray-4: #151618;
  --gray-5: #151618;
  --gray-6: #111111;
  --white-1: #eeeeee;
  --white-2: #a9abb3;
}
  
@media (prefers-color-scheme: light) {
  :root {
    --gray-1: #3f3f3f;
    --gray-2: #32353a;
    --gray-2_5: #242526;
    --gray-3: #e8e8e8;
    --gray-4: #eeeeee;
    --gray-5: #f5f5f5;
    --gray-6: #a9abb3;
    --white-1: #242526;
    --white-2: #242526;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --gray-1: #3f3f3f;
    --gray-2: #32353a;
    --gray-3: #25282c;
    --gray-4: #151618;
    --gray-5: #151618;
    --gray-6: #111111;
    --white-1: #eeeeee;
    --white-2: #a9abb3;
  }
}

#category-modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
  display: none;
  visibility: hidden;
}

#category-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  max-width: 850px;
  max-height: 60vh;
  border-radius: 1rem;
  padding: 1rem;
  margin: auto;
  background: var(--gray-3);
  display: none;
  visibility: hidden;
  line-height: 140%;
}

#category-modal-content {
  display: relative;
  max-height: calc(100% - 5rem);
  overflow: auto;
}

#category-modal-title {
  margin-bottom: 1rem;
  font-size: 2rem;
  padding: 1rem;
}

#category-modal-bg.open,
#category-modal.open {
  display: block;
  visibility: visible;
}

.modal-article,
.modal-article-date {
  display: block;
  color: var(--white-2);
}

.modal-article {
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease-in-out;
  border-radius: 9px;
  margin: 1px;
}

.modal-article-date {
  font-size: 0.8rem;
}

.modal-article:hover {
  background: var(--gray-4);
  outline: 1px solid var(--gray-6);
}

hr {
  border-top: 2px dashed var(--white-2) !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  margin-bottom: 1.75rem !important;
}

/* header */

#bio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#img-wrapper img {
  border-radius: 50%;
  max-width: 100px;
}
#bio-wrapper {
  margin-left: 1rem;
}
#text-wrapper {
  line-height: 1.2rem;
  font-weight: 300;
}
#text-wrapper a {
  color: cyan;
  border-bottom: 1px solid cyan;
}
@media (prefers-color-scheme: light) {
  #text-wrapper a {
    color: #1ebaba;
    border-bottom: 1px solid #1ebaba;
  }
}
#social-wrapper {
  margin-top: 1rem;
}
#social-wrapper img {
  filter: invert() !important;
  width: 25px;
  height: 25px;
  margin: 0 0 0.3rem 0;
  transition: all 0.2s ease-in-out;
}
@media (prefers-color-scheme: light) {
  #social-wrapper img {
    filter: none !important;
  }
}
#social-wrapper img:hover {
  transform: scale(1.2);
}
