html {
    color: #222;
    font-size: 1em;
}

img {
    vertical-align: middle;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background: #eee;
    color: #737373;
}

li {
    list-style: none;
}

ul {
    padding: 0;
    /*text-align: center;*/
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.header-container {
    border-bottom: 20px solid #ed7916;
    padding-left: 50px;
}

.footer-container,
.main aside {
    border-top: 20px solid #ed7916;
}

.main {
    padding: 0 30px 30px;
    overflow: hidden;
}

.footer-container footer {
    color: white;
    padding: 20px 0;
}

header h1 {
    display: inline-block;
    position: relative;
    top: 45px;
}

.menu {
    margin: 35px;
}

.menu-item {
    display: inline-block;
    font-size: 22px;
    font-weight: bold;
    margin: 5px;
    cursor: pointer;
}

.menu-item:hover {
    border-bottom: 2px solid #ed791d;
}

.menu-item.active {
    border-bottom: 2px solid #ed791d;
}

.projectElement {
	text-align: left;
    display: inline-block;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 10px;
    height: 225px;
    vertical-align: top;
    cursor: pointer;
    opacity: 0;
    background: #fff;
}

.hover {
    -webkit-transform:scale(1.05) !important;
    transform:scale(1.05) !important;
}

.transition {
    transition: .3s all !important;
    -webkit-transition: .3s all !important;
    -moz-transition: .3s all !important;   
}

.projectImage {
    width: 234px;
    height: 144px;
    border: 1px solid #fff;
    background-position: center;
    background-size: cover !important;
}

.project-desc {
    font-size: 16px;
    font-weight: 600;
    width: 236px;
    padding: 5px 10px 0 10px;
    color: #212121;
    box-sizing: border-box;
    line-height: 1.3em;
}

a:link { 
    color: #555; 
    text-decoration: none; 
}

a:visited { 
    color: #555; 
    text-decoration: none; 
}

a:hover { 
    color: #ed7916;
    text-decoration: underline; 
}

a:active { 
    color: #ed7916;
    text-decoration: underline; 
}

h3 {
    font-size: 1em;
    margin: 5px;
}

@media only screen and (max-width: 651px) {
    header h1 {
        top: 0px;
    }

    #projectList {
        text-align: center;
    }

    #projectElement {
        text-align: left;
    }

}

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}