/* This is a comment in CSS */

/* The first part of a stylesheet is a "reset" to fix undesirable default behaviour */

/* Style all font awesome icons */
.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
    opacity: 0.7;
}

/* Set a specific color for each brand */

/* github */
.fa-github {
    background: #193142;
    color: white;
}

/* linkedin */
.fa-linkedin {
    background: #284e69;
    color: white;
}

/* email */
.fa-envelope {
    background: #386e94;
    color: white;
}

.fa-file-text {
    background: #4b92c4;
    color: white;
}

.fa-book {
    background: #5fb7f5;
    color: white;
}

/* resume */
.fa-file-pdf-o {
    background: #3498DB;
    color: white;
}

.fa {
    padding: 15px;
    font-size: 30px;
    width: 36px;
    text-align: center;
    text-decoration: none;
    border-radius:15px;
}

body {
    margin: 0;
}

header, section, main, nav {
    display: block;
}

header:after, section:after, main:after, nav:after {
    content: " "; /* 1 */
    display: block; /* 2 */
    clear: both;
}

/* Once the fixes are done, we can get to the actual styles */

html {
    font-family: Geneva, Helvetica, Arial, sans-serif;
    color: #383838;
    background-color: #F8F8F8;
}

a {
    color: #224c8f;/*#A61923;*/
}
/*#224c8f - links
 * #1d3f75 - top,words
 * #152f59 - middle
 * #102342 - bottom*/


header {
    background-color: #1d3f75;/*#A61923;*/
    border-bottom: 5px solid #152f59;/*#7D0918;*/
    padding: 10px;
}

header, header a, header a:visited {
    color: #EDEDED;
    text-decoration: none;
}

header a:hover {
    text-decoration: underline;
}

header h1, header nav {
    text-align: center;
}

header nav a:not(:last-child) {
    margin-right: 10px;
}

header h1, header nav, main {
    max-width: 640px;
    width: 100%;
    margin: 0px auto;
}

#banner {
    text-align: center;
    margin: 0;
    background-color: #102342;/*#7D0918;*/
}

#banner img {
    width: 100%;
    height: auto;
    max-width: 1024px;
}

#game {
    text-align: center;
    margin: 0;
    background-color: #000000;
}


.bio {
    margin-top: 15px;
    background-color: #D8D8D8;
    padding: 10px;
    border-bottom: 5px solid #B0B0B0;
}

.bio p {
    margin: 0;
}

.bio img {
    float: left;
    margin-right: 10px;
    border: 1px solid #A0A0A0;
}

.bio address {
    margin-top: 5px;
    font-style: normal;
    color: #585858;
    text-align: right;
    font-size: 90%;
}

h2 {
    color: #1d3f75;/*#A61923;*/
}

@media screen and (max-width: 640px) {
    section {
        padding: 0 10px;
    }
}



