* {
    margin: 2px;
    padding: 5px;
    border: 0px black solid;
}

#navigation {
    margin: auto;
}

#main-title {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

#main-content {
    min-height: 400px;
    display: grid;
    /* grid-template-columns: 20% 60% 20%; */
    grid-template-columns: 200px minmax(500px, 1fr) auto;
    grid-template-rows: 100%;
    position: relative;
}

#left-sidebar {
    background-color: #380340;
    border: 2px dotted #d18961;
    width: auto;
    max-width: 200px;
    justify-self: right;
}

#content {
    width: auto;
    background-color: #380340;
    border: 2px dotted #d18961;
}

#right-sidebar {
    width: auto;
    background-color: aqua;
    min-width: 100px;
}

#hit-counter-div {
    margin: 0px;
    padding: 0px;
    position: absolute;
    bottom: 10px;
}

ul {
    list-style-type: "\2765  ";
    list-style-position: inside;
    color: #e673ad;
}

li {
    margin: 0px;
}

/* old sussy baka method */

/* #left-sidebar {
    background-color: aqua;
    width: 10%;
    float: left;
    align-self: left;
}

#content {
    justify-content: center;
    max-width: 70%;
    width: 50%;
    background-color: blue;
    float: left;
    align-self: center;
}

#right-sidebar {
    justify-content: right;
    width: 10%;
    background-color: aqua;
    float: left;
    align-self: right;
} */