body {
    background-color: #F5F5F5;
    color: #666666;
}

/* Main content */
h1#title {
    margin-top: 20px;
    margin-bottom: 0px;
    font-family: sans-serif;
    font-size: 1.8em;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #333333;
}

h3#subtitle {
    margin-top: 10px;
    margin-bottom: 0px;
    font-family: serif;
    font-size: 1.2em;
    font-weight: 400;
    font-style: italic;
}

#content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    right: 0px;
    left: 0px;
}

#headerimage {
    border-radius: 100px;
    transition: all .5s linear;
}

#headerimage:hover {
    -webkit-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

/* Buttons */
#buttons {
    margin-top: 30px;
    font-size: 2em;
}

a.button {
    margin-left: 10px;
    margin-right: 10px;
    color: #999999;
}

a.button :visited {
    color: #999999;
}

a.button :hover {
    color: #333333;
    transition: all .1s linear;
    transform: scale(1.4,1.4);
}

a.button-twitter :hover {
    color: #4099FF;
}

a.button-facebook :hover {
    color: #3B5998;
}

a.button-linkedin :hover {
    color: #0077B5;
}

a.button-github :hover {
    color: #000000;
}

a.button-steam :hover {
    color: #000000;
}

a.button-acclaim :hover {
    color: #4D87AF;
}

a.button-email :hover {
    color: #EAD1A1;
}

/* Animations */
@keyframes appear { 
    from { opacity: 0; } to { opacity: 1; }
}

@keyframes disappear { 
    from { opacity: 1; } to { opacity: 0; }
}

.appear {
    animation: appear;
    animation-duration: 500ms;
    opacity: 1;
}

.disappear {
    animation: disappear;
    animation-duration: 500ms;
    opacity: 0;
}