@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@10..48,300&display=swap');

* {
    transition: all ease-in-out 0.4s;
    font-family: 'Bricolage Grotesque', sans-serif;
}
body {
    margin: 0;
    padding: 0;
    background-color: #28262C;
    overflow: hidden;
}
#menubar {
    background-color: #998FC7;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    z-index: 10;
    overflow-x: hidden;
    overflow-y: auto;
}
#body {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 300px;
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto;
}
.head {
    width: 100%;
    height: 150px;
    display: grid;
    place-items: center;
}
.head * {
    text-align: center;
}
::selection {
    background-color: #6f659c;
    color: #28262C;
}
.list {
    width: 100%;
}
.lb {
    width: 100%;
    /* height: 30px; */
    border: none;
    text-align: left;
    padding-inline-start: 20px;
    background-color: transparent;
    padding: 10px 20px;
    font-weight: 400;
    transition: all ease-in-out 0.01s;
}
.lb:hover {
    background-color: #7c74a1; 
}
#hamburger {
    padding: 10px 15px;
    border-radius: 50%;
    color: white;
    background-color: transparent;
    border: none;
    font-size: large;
    aspect-ratio: 1;
    z-index: 100;
    position: absolute;
    left: 30px;
    top: 30px;
}
#hamburger:hover {
    background-color: #faf8ff56;
}
#page {
    color: white;
    padding: 20px;
}
#page table {
    color: white;
    background-color: rgba(255, 255, 255, 0.123);
    padding: 4px;
    border-radius: 8px;
    border: 3px solid rgba(255, 255, 255, 0.575);
}
#page th {
    padding: 0 20px;
}
#page td {
    padding: 0 20px;
    text-align: center;
    border-top: 3px solid rgba(255, 255, 255, 0.377);
}
#page img {
    width: 100%;
    border-radius: 8px;
}
#page img:active {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 0;
}
pre::selection{
    background-color: #6f659c;
    color: white;
}
pre {
    padding: 10px 20px;
    background-color: #4b4852;
    text-shadow: none;
    color: white;
    border-radius: 8px;
    overflow-x: scroll;
    font-family: 'JetBrains Mono', monospace;
}
pre::-webkit-scrollbar {
    background-color: #4b4852;
    border-radius: 8px;
}
pre::-webkit-scrollbar-thumb {
    background-color: #998FC7;
    border-radius: 18px;
    border: 6px solid #4b4852;
}
::-webkit-scrollbar {
    background-color: #28262C;
    border-radius: 8px;
}
::-webkit-scrollbar-thumb {
    background-color: #998FC7;
    border-radius: 18px;
    border: 6px solid #28262C;
}

blockquote {
    border-left: 4px solid rgba(255, 255, 255, 0.432);
    padding-left: 20px;
}
a {
    color: #a69bdb;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
@media screen and (max-width: 600px) {
    #menubar {
        width: 100%;
        left: -100%;
    }
    #body {
        left: 0;        
    }
}
