::-webkit-scrollbar {
    background: none;
}

::-webkit-scrollbar-thumb {
    background: rgba(269, 169, 69, .3);
}

.grid {
    display: grid;
    grid-template-columns: 1fr 4fr 2fr;
    margin: 0 auto;
    max-width: 90%;
    line-height: 25px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    gap: 5em;
    font-size: 18px;
    text-align: left;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    padding-top: 5em;
    padding-bottom: 20em;
    color: rgba(5, 5, 5, 1);
}

nav {
    grid-column: 1;
    font-size: 18px;
    text-align: left;
}

.content {
    grid-column: 2 / 4;
    display: grid;
    grid-template-columns: 5fr 1fr 1fr;
}

.content *:not(.wide):not(.wider) {
    grid-column: 1;
}

.wide {
    grid-column: 1 / 3;
}

.wider {
    grid-column: 1 / 4;
}

.title {
    font-size: 28px;
    font-weight: 700;
}

.divider {
    background-color: rgba(269, 169, 69, .3);
    height: 0.2rem;
    width: 100%;
    z-index: -1;
    margin-top: -1.3rem;
    margin-bottom: 4rem;
}

.centertext {
    text-align: center;
}

p {
    font-weight: inherit;
    margin-bottom: 1rem;
}

img {
    margin-top: 1rem;
    margin-bottom: 2rem;
    border: solid rgba(5, 5, 5, 0.1) 1px;
}

a {
    color: rgba(45, 45, 50, 1);
    background-color: rgba(65, 105, 255, .15);
    text-decoration: none;
    padding: 2px;
}

a:hover {
    color: rgba(45, 45, 50, 0.9);
    background-color: rgba(65, 105, 255, .2);
}

pre {
    background-color: rgba(269, 169, 69, .15);
    max-width: 100%;
    overflow-x: scroll;
    font-size: 16px;
    padding: 16px;
    margin-bottom: 2rem;
}

code {
    font-size: 16px;
    background-color: rgba(269, 169, 69, .15);
    padding: 2px;
}
