html, body {
    height: 100%;
    padding: 0;
    margin: 0;
    background: #fff;
    color: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5em;
}

p {
    padding: 0;
    margin: 0 0 10px 0;
}

a {
    text-decoration: none;
}

a:link, a:visited {
    color: #1A8CFF;
}

a:hover {
    color: rgba(0, 0, 0, 0.8);
}

a:active {
    color: #1A8CFF;
}

.main {
    background-color: rgba(26, 140, 255, 0.05);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.main > .main-header:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 60%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 60%);
    width: 100%;
    height: 2em;
}

.main > .main-content {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 1000px;
    align-self: center;
    margin: 0 auto;
}

.main > .main-content > div {
    margin: 30px 0 0 0;
    max-width: 40%;
    height: 400px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.30);
    border-radius: 4px;
    padding: 15px;
    box-sizing: border-box;
    flex: 1 0 40%;
}

.main > .main-content > div.image-section {
    padding: 0;
    box-shadow: none;
}

.main > .main-content > div.image-section > img {
    width: 100%;
    border-radius: 4px;
}

.main > .main-content > div > span:first-child {
    text-transform: uppercase;
    display: inline-block;
    font-size: 1.3em;
    padding-bottom: 10px;
    color: #1A8CFF;
}

.main > .main-footer {
    padding: 10px 15px;
    margin-top: 30px;
    text-align: right;
}

/* Social Icons */

@font-face {
    font-family: 'si';
    src: url('social/socicon.eot');
    src: url('social/socicon.eot?#iefix') format('embedded-opentype'),
         url('social/socicon.woff') format('woff'),
         url('social/socicon.ttf') format('truetype'),
         url('social/socicon.svg#icomoonregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family:si;
        src: url(social/socicon.svg) format(svg);
    }
}

.social {
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
}

.social li {
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.social li a {
    font-family: si !important;
    font-style: normal;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.5s;
    transition: 0.5s;

    overflow: hidden;
    text-decoration: none;
    text-align: center;
    display: block;
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 28px;
    border-radius: 8px;
    margin-right: 8px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8);
}

.social li a:hover {
    background-color: #1A8CFF;
}

.social-icon-last {
    margin: 0 !important;
}

.facebook:before {
    content: '\e041';
}
.instagram:before {
    content: '\e057';
}
.tumblr:before {
    content: '\e059';
}
.github:before {
    content: '\e030';
}
.linkedin:before {
    content: '\e049';
}
.mail:before {
    content: '\e01f';
}