#left-box img {
    max-width:100%;
}
#right-box img {
    max-width:100%;
}

#logo {
    background-color: orange;
    width: 10vh;
    position:fixed;
    top: 5vh;
    left:5vh;

    border: 5px;
    box-shadow: -5px 5px 0 0 black,
                -10px 10px 5px 0 black;
    border-top-style: solid;
    border-top-color: gray;
    border-right-style: solid;
    border-right-color: gray;
}

button {
    margin: 2px;
}

a {
    color: black;
}

a:hover {
    color: purple;
}

a:active {  /* Must come after hover for some reason. */
    color: pink;
}

a:visited {
    color: grey;
}

#nav-tags {
    position: absolute;
    /*max-width: 90%;*/
    max-width: 400px;
    max-height: 400px;

    /*top: 0vh;*/
    /*left: 0vh;*/
    /*top: 0px;*/
    left: 150px;

    padding: 5px;

    border: 5px;
    box-shadow: -5px 5px 0 0 black,
                -10px 10px 5px 0 black;
    border-top-style: solid;
    border-top-color: gray;
    border-right-style: solid;
    border-right-color: gray;

    background-color: white;
}

.nav-box {
    /*width: 15%;*/
    width: 10%;  /* when position fixed, width % based on document width.  */
    position:fixed;
    left: 0;

    z-index: 2;
}

.nav {
    /*width: 66%;*/
    margin: 0 auto;
    padding: 10px;

    border-style: dashed;
    border-width: 1px;
    box-sizing: border-box;

    background-color: white;
    opacity: 0.9;

    /*font-family: "ubuntu", lucida, monospace;*/
    font-family: "lucida console", monaco, monospace;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.content-box {
    width: 70%;
    z-index: 1;
}

.content {
    width: 100%;
    /*float: left;*/  /* was able to remove float when adding flexbox */
    margin: 0 auto;
    border-style: dashed;
    border-width: 5px;
    box-sizing: border-box;
    padding: 10px;

    /*font-family: "ubuntu", lucida, monospace;*/
    font-family: "lucida console", monaco, monospace;

    display: flex;
    flex-direction: column;  /* not sure I need flex here, but its solving my word wrap problem too */
    justify-content: center;
}

@media all and (max-width: 812px){
    #content-row { flex-direction: column; }
    .nav-box { width: 100%; position: -webkit-sticky; position: sticky; top: 0;}
    .nav { width: 100%; flex-direction: row; }
    .content-box { width: 100%; }
}
@media not all and (max-width: 812px){
    #content-row { flex-direction: row; }
    /*.nav-box { width: 15%; }*/
    /*.nav-box { width: 15%; position: -webkit-sticky; position: sticky; top: 0;}*/
    /*.nav { flex-direction: column; }*/
    .content-box { width: 70%; }
}

.content-body {
    width: 98%;
    margin: 1%;
    border-style: dashed;
    border-width: 1px;
    box-sizing: border-box;
    background-color: white;
    opacity: 0.9;
    padding: 10px;

    /*display: flex;*/
    /*flex-direction: row;  [> not sure I need flex here, but its solving my word wrap problem too <]*/
    /*justify-content: center;*/
}

.content-body-invisible {
    width: 95%;
    margin: 0;
    padding: 0;

    /*border-width: 1px;*/
    /*box-sizing: border-box;*/
    opacity: 0.9;

    /*display: flex;*/
    /*flex-direction: row;  [> not sure I need flex here, but its solving my word wrap problem too <]*/
    /*justify-content: flex-start;*/
}

.tag {
    background-color: grey;
}

input[type=text] {
    width: 50%;
}

textarea {
    width: 100%;
    height: 300px;
}
