/* Hide the sidebar TOC */
.md-sidebar--secondary {
    display: none;
}
.md-nav--secondary {
    display: none;
}

/* Adjust the main content width if the sidebar is hidden */
.md-content {
    width: 100%;
}

/* body, p, li, a {
    font-size: 90%;
}  */

/* Hide the top navigation bar */
.md-tabs__list {
    display: none !important;
}

.md-copyright {
    display: none !important;
}

.md-logo img {
    filter: brightness(0) invert(1) !important;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../intently.png'); /* Adjust the path as necessary */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 600px 600px; /* Adjust size as necessary */
    opacity: 0.2;
    z-index: -1;
}