/* The side navigation menu */
html{
    font-family: 'Inconsolata', monospace !important;
    color: #caeec5;
    background-color: #060606;
    height: 100%;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgb(202, 238, 197);
    background-color: rgb(6, 6, 6) !important;
}

.active {
    background-color: rgb(43, 49, 42)
}

header {
    /*left: 0px;*/
    top: 0px;

    background-color: rgb(6, 6, 6);
    position: fixed;
    align-content: center;
    
    width: 100%;
}

a:visited {
    color: rgb(202, 238, 197);
}

ul {
    list-style: none;
    padding-right: 2rem;
}

.consecutiveLines {
    margin-top: 0;
    margin-bottom: 0;
}

li {
    list-style: none;
}

body a:link {
    text-decoration: none;
    color: rgb(202, 238, 197) !important;
}
body a:hover{
    color: #caeec5;
}

body li {
    padding: 10px;
}

.navbar {
    overflow: hidden;
}

.navbar img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 25%;
    background-color: rgb(6, 6, 6);
}

.navbar a {
    text-decoration: none;
}

.navbar li {
    display: inline;
}

.hide { display:none; }

.navbar a:link {
    color: rgb(202, 238, 197);
}

.navbar a:visited {
    color: rgb(202, 238, 197);
}

/* Links on mouse-over */
.navbar a:hover {
    color: rgb(202, 238, 197);
    background-color: rgba(0, 175, 9, 0.342);
}

.navbar a.logo:hover {
    background-color: rgb(6, 6, 6);
}


.dropdown-options {
    display: none;
    position: absolute;
    overflow: auto;
}

.dropdown:hover {
    background-color: rgba(0, 175, 9, 0.342);
    height: 110px;
}

.dropdown:hover .dropdown-options {
    display: block;
}

/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
.content {
    /*margin-left: 200px;*/
    margin-top: 100px;
    top: 50%;
    padding: 80px;
    /*height: 1000px;*/
}

.content img {
    max-width:400px;
}

footer {
    font-size: 14;
    height: 60;
    border: 1px;
    margin-top: 30px;
    padding-bottom: 3;
}

/* On screens that are less than 700px wide, make the sidebar into a topbar*/
@media screen and (max-width: 700px) {
    /*.navbar {
    width: 100%;
    position: fixed;
    background-color: rgb(6, 6, 6);
    }
    .navbar a {float: left;}
    .navbar ul {display: list-item flow;}
    .navbar a.logo {padding: center;}*/
    .content {margin-left: 0;  width: 50%;}
}
    
/* On screens that are less than 500px, display the bar vertically, instead of horizontally */
@media screen and (max-width: 500px) {
    .navbar {
        display: inline-block;
        
    }

    .navbar img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 25%;
    }

    .navbar a {
    text-align: center;
    float: none;
    background-color: rgb(6, 6, 6);
    }
    
    .navbar ul {
        text-align: center;
        display: flex;
    }

    .content {
        margin-top: 90;
        width: 50%;
    }

    
}