/* {
    padding: 0px;
    margin: 0px;
}*/

body {
    background-color: rgb(235, 235, 235);
    /*background: linear-gradient(90deg,rgba(235, 235, 235, 1) 0%, rgba(235, 235, 235, 1) 50%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 100%);*/    
    font-family: monospace;
    line-height: 1.75;
}
nav {
    width: 200px;
    height: 200px;
    border-style: dashed;
    border-width: 1px;
    border-color: black;
    color: black;
    position: fixed;
    left: 0px;
    bottom: 0px;
    text-align: center;
    line-height: 1.25;
    padding: 20px;
    box-sizing: border-box;

}

aside {
    width: 200px;
    height: calc(100vh - 200px);
    border-style: dashed;
    border-width: 1px;
    border-color: black;
    color: black;
    overflow: hidden;
    position: fixed;
    left: 0px;
    top: 0px;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    list-style: none;
}

article {
    width: calc(50vw - 100px);
    height: calc(100vh);
    position: fixed;
    box-sizing: border-box;
    left: calc(150px + 25vw);
    top: 0vh;
    padding: 100px 0px 100px 0px;
    color: rgb(0, 0, 0);
    overflow: scroll;
}

.post {
    border-style: dashed;
    border-width: 1px;
    border-color: black;
    color: black;
    padding: 25px 50px 25px 50px;
    margin-bottom: 25px;
}

.post > h1 {
    margin-top: 0em;
    margin-bottom: 0em;
}

.medium {
    background: rgb(222, 140, 255);
}

.genre {
    background: rgb(239, 255, 94);
}

.warning {
    background: rgb(255, 128, 166);
}

.date {
    background: rgb(255, 217, 134);
}

a {
    color: black;
}

a:hover {
    color: black;
}

a:active {
    color: black;
}

a:visited {
    color: black;
}

::selection {
    color: rgb(235, 235, 235);
    background: black;
}

nav::-webkit-scrollbar {
    display: none;
}