.home {
    padding-bottom: 20px;
    padding-left: 20px;
    background-color: #1e1e2e;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

a {
    color: #89dceb;
    text-decoration: underline;
}

.categories {
    width: 99%;
}

.categories span {
    margin-top: 10px;
}

.articles-container p:hover {
    background-color: #313244;
    cursor: pointer;
}

.articles-container p.selected {
    background-color: var(--highlight, #313244);
    color: white;
}

.articles-container {
    height: 100px;
    overflow: scroll;
}

.categories span {
    margin-left: 10px;
}

.categories span:nth-child(1) {
    margin-left: 0;
}

.categories span.selected {
    opacity: 0.5;
}

.bar {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #2e2f46;
    width: 100%;
} 

.help {
    width: fit-content;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #1e1e2e;
    padding-left: 50px;
    padding-right: 50px;
}

.hidden {
    display: none;
}

.mobile {
    display: none;
}

@media screen and (max-width: 800px) {
    .bar {
        display: none;
    }

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    .categories {
        display: none;
    }

    .articles-container {
        height: 95%;
    }

    .center {
        width: 100%;
    }
}

body.bg {
  margin: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("assets/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#mobileMarker {
    display: none;
}

@media (pointer: coarse) {
  #mobileMarker {
    display: block;
  }
}

h1::before { content: "# "; }
h2::before { content: "## "; }
h3::before { content: "### "; }
h4::before { content: "#### "; }
h5::before { content: "##### "; }
h6::before { content: "###### "; }