* {
    text-decoration: none;
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
}

#container {
    width: 91.5%;
    height: auto;
    margin: 0px auto;
    border: 1px solid rgba(225, 225, 226, 0.8);
    box-shadow: 0px 0px 10px #ccc;
    margin-top: 75px;
    margin-bottom: 40px;
    min-height: 550px;
}


/************* HEADER **************/

#header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    height: 80px;
    border-bottom: 1px solid rgba(225, 225, 226, 0.8);
}

.logo {
    flex-grow: 1;
    flex-basis: 63%;
    padding: 5px;
    margin-left: 10px;
}

.logo h1 {
    font-family: Helvetica;
    font-style: italic;
    font-weight: 900;
    font-size: 1.49rem;
    text-shadow: 1px 1px 0px #ccc;
    text-transform: uppercase;
    color: black;
}

#menu {
    flex-grow: 1;
    flex-basis: 30%;
    height: 100%;
    margin-right: 12px;
}

#menu>ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    list-style: none;
    padding-right: 8px;
}

#menu a {
    color: #444;
    font-size: 0.7rem;
    padding: 10px;
    text-transform: uppercase;
    transition: all 300ms;
}

#menu a:hover {
    background: #ccc;
    color: white;
}


/************* CONTENT **************/

#content {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
}


/* Projects */

#projects {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    flex-basis: 82%;
}

.project {
    flex-grow: 1;
    flex-basis: 170px;
    margin-bottom: 25px;
    margin-right: 15px;
    border: 1px solid #ccc;
}

.project img {
    width: 100%;
}

.project-info {
    padding: 5px;
}

.project-info {
    font-size: 10px;
    color: gray;
}

.project-info a {
    font-size: 10px;
    color: black;
    transition: all 300ms;
}

.project-info a:hover {
    color: green;
}


/* Sidebar */

#sidebar {
    flex-basis: 14.8%;
    margin-right: 15px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

#sidebar h2 {
    display: block;
    width: 100%;
    font-size: 12px;
    font-weight: 100;
    color: #444;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(225, 225, 226, 0.8);
    text-align: center;
}

#sidebar ul {
    list-style: none;
}

#sidebar ul li {
    padding-bottom: 12px;
}

#sidebar a {
    display: block;
    font-size: 12px;
    text-align: center;
    background: #eee;
    padding: 11px;
    color: #444;
    text-transform: uppercase;
    transition: all 300ms;
}

#sidebar a:hover {
    background: #eee;
    color: white;
}


/************* FOOTER **************/

#footer {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    border-bottom: 1px solid rgba(225, 225, 226, 0.8);
}

#footer .logo {
    order: 2;
    opacity: 0.5;
    flex-basis: auto;
    flex-grow: 1;
    text-align: right;
    margin-right: 15px;
}

#footer .info {
    order: 1;
    flex-grow: 1;
    margin-left: 15px;
    color: #444;
}