* {
    margin: 0;
}

body {
    text-align: center;
    background-color: #fff;
}

header {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    top: 0;
    left: 0;
    right: 0;
}

section {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
}

.projects-container {
    justify-content: space-between;
}

img {
    width: 100%;
    border-radius: 0px;
    transition: 0.25s;
}

img:hover {
    transition: border-radius ease 0.25s;
    border-radius: 0px;
    transform: scale(1);
}

body {
    font-size: 14px;
}

div.titlebox {
    height: 20px;
    margin-top: 10px;
    text-align: center;
    font-size: 30px;
}

div.spacer {
    width: 20%;
    height: 10px;
    float: left;
}

div.projectcolumn {
    width: 28%;
    margin-left: 0%;
    margin-right: 4%;
    margin-top: 2%;
    float: left;
    min-width: 48px;
}

div.project {
    font-family: Lucida Sans Unicode, Lucida Grande, sans-serif;
    background-color: #eee;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 8%;
    transition: 0.25s;
    text-decoration: none;
    color: #002937;
}

div.project:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.0);
}

div.projname {
    text-align: center;
    padding: 2px;
    font-size: 150%;
}

div.about {
    text-align: center;
    padding: 2px;
    font-size: 100%;
}

div.github {
    text-align: center;
    padding: px;
    font-size: 75%;
}


