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

body {
    background-color: rgb(0, 0, 0);
    font-family: monospace;
    line-height: 1.75;
}
nav {
    width: 200px;
    height: 200px;
    /*border-radius: 100px;*/
    border-style: dashed;
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    position: fixed;
    /*left: calc(25vw - 100px);
    top: calc(50vh - 100px);*/
    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: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    background: 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 - 200px);
    position: fixed;
    box-sizing: border-box;
    left: calc(150px + 25vw);
    top: 0vh;
    padding: 100px 10vw 0px 10vw;
    color: rgb(255, 255, 255);
    overflow: scroll;
}

#worm {
    height: 200px;
    width: calc(100vw - 200px);
    border-style: dashed;
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    overflow: hidden;
    position: fixed;
    /*left: calc(25vw - 100px);
    top: calc(50vh - 100px);*/
    left: 200px;
    bottom: 0px;
    box-sizing: border-box;
}

#plantleft {
    color: rgb(255, 255, 255);
    overflow: hidden;
    position: fixed;
    /*left: calc(25vw - 100px);
    top: calc(50vh - 100px);*/
    left: calc(150px + 25vw - 1500px + 15vw);
    bottom: 200px;
    box-sizing: border-box;
    z-index: -9;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

#plantright {
    color: rgb(255, 255, 255);
    overflow: hidden;
    position: fixed;
    /*left: calc(25vw - 100px);
    top: calc(50vh - 100px);*/
    left: calc(50px + 75vw - 15vw);
    bottom: 200px;
    box-sizing: border-box;
    z-index: -10;
}

a {
    color: rgb(255, 255, 255);
}

a:hover {
    color: rgb(255, 255, 255);
}

a:active {
    color: rgb(255, 255, 255);
}

a:visited {
    color: rgb(255, 255, 255);
}

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

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

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

#worm::-webkit-scrollbar {
    display: none;
}

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