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

body {
    background-color: black;
    background: url("/writings/images/greenbackground.jpg");  
    background-size: 200px 200px;
    font-family: monospace;
    line-height: 1.75;
}
nav {
    width: 200px;
    height: 200px;
    background-color: #2C471F;
    border-style: dashed;
    border-width: 1px;
    border-color: white;
    color: white;
    position: fixed;
    left: 0px;
    bottom: 0px;
    text-align: center;
    line-height: 1.25;
    padding: 20px;
    box-sizing: border-box;

}

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

#logs {
    width: calc(75vw - 750px);
    border-style: dashed;
    border-width: 1px;
    border-color: white;
    position: fixed;
    left: calc(650px + 25vw);
    bottom: 50px;
}

a {
    color: white;
}

a:hover {
    color: white;
}

a:active {
    color: white;
}

a:visited {
    color: white;
}

::selection {
    color: black;
    background: white;
}

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