a.subpage {
    display:flex;
}

div.navbox{
    width:100%;
    left:0px;
    top:0px;
    position:fixed;
    display:flex;
    justify-content: center;
    align-content: center;
    background-color:rgba(0, 0, 0, 0.90);
    /* border-bottom: solid 1px white; */

}

div.contentbox{

    display:flex;
    justify-content: space-evenly;
    align-content: center;
    /* background-color:thistle; */
    min-width: 500px;
    margin: 10px 0px 10px 0px;
}

.navcolumn{

    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: solid 1px red; */

}

.navcolumn img {
/* Something funny happened where the width depends on the img portion */
    margin: 5px;
    transition: color .5s;

}

a.nostyle:visited, a.nostyle:link {
    text-decoration: inherit;
    color: inherit;
    color: rgb(211, 211, 211);
}

img.visfix{

    height: 30px;

}

span.navi {

    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    transition: all .5s;
    font-weight: bold;
    font-size: 1.1em;

}

span.navi:hover {

    color:whitesmoke;
    background-color:steelblue;
    padding: 5px;
    border-radius: 2px;
    font-size: 1.em;


}

.homebutton {

    margin-right: 5px;

}