body {
    margin: 0;
    padding: 0;
    font-family: Montserrat, sans-serif;
}

img {
    width: 100%;
    height: auto;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

#topbar {
    position: relative;
    display: flex;
    width: 100%;
    height: 120px;
    background-color: rgb(0,48,0);
    justify-content: center;
    justify-items: center;
}

#logo {
    width: 350px;
    height: auto;
    margin: 0 auto;
}

#menubar {
    position: relative;
    width: 100%;
    height: 40px;
    background-color: rgb(128,128,128);
}

#menubar ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#menubar li {
    display: inline-block;
    width: auto;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-family: Montserrat, sans-serif;
    font-size: 1em;
    font-weight: 300;
    color: rgb(255,255,255);
}

#menubar li a {
    text-decoration: none;
    color: rgb(255,255,255);
}

#menubar li a:hover {
    font-weight: 700;
}

#menubar li.active {
    background-color: rgb(0,40,0);
    font-weight: 700;
}

article {
    position: relative;
    width: 80%;
    margin: 10px auto;
    height: auto;
    overflow: scroll;
    font-size: 1rem;
    font-weight: 300;
    border-bottom: 1px solid rgb(0,40,0);
}

.inlinephoto {
    position: relative;
    width: 40%;
    margin: 0 20px 20px 0;
    height: auto;
    float: left;
}

@media only screen
    and (max-width : 480px) {
        
        .inlinephoto {
            width: 100%;
            float: none;
            margin: 0 auto;
        }
}