body {
    background-color: rgb(171, 206, 206);
    font-family: monospace;
    line-height: 1.75;
}

nav {
    width: 200px;
    height: 200px;
    border-style: dashed;
    border-width: 1px;
    border-color: rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    background: rgb(171, 206, 206);
    position: fixed;
    left: 0px;
    bottom: 0px;
    text-align: center;
    line-height: 1.25;
    padding: 20px;
    box-sizing: border-box;
    z-index: 10;
}

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;
}

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

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

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

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