html,
body,
.page-wrapper {
    height: 100%;
    color: #f6f6f6;
}

body {
    background: #2e3458;
    font-family: 'Open Sans', sans-serif;
}

.backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../img/bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: -1;
}

.page-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
}

.container.centre-container {
    margin: auto;
}

.row.avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.panel.panel-default.avatar-panel {
    display: inline-block;
    border-radius: 10px;
    padding: 2px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
}

.avatar-panel img {
    border-radius: 10px;
    width: 150px;
    height: 150px;
}

.headline {
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    font-family: 'Passion One', 'Helvetica Neue', 'Helvetica', sans-serif;
    font-size: 3.5em;
    line-height: 1em;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align: center;
    color: inherit;
    -webkit-text-fill-color: inherit;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

span.emphasis-name {
    color: #8ec6e2;
}

.panel.panel-default.about {
    font-size: 1.7em;
    width: 75%;
    background-color: rgba(0, 0, 0, 0.7);
    margin-left: auto;
    margin-right: auto;
    border: none;
    padding: 3px;
    box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.7);
    text-shadow: 2px 2px black;
}

.about ul li:last-child {
    margin-left: -4em;
}

.about p {
    text-align: justify;
    padding-left: 0.6em;
    padding-right: 0.6em;
}

.row.links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    font-size: 3em;
}

.links>a {
    color: inherit;
    text-decoration: none;
}

.links a:active {
    text-shadow: none;
    left: 2px;
    top: 2px;
    position: relative;
}

a:hover .icon-twitter,
a:active .icon-twitter {
    color: #1DA1F2;
}

a:hover .icon-youtube,
a:active .icon-youtube {
    color: #e52d27;
}

a:hover .icon-twitch,
a:active .icon-twitch {
    color: #6441A5;
}

a:hover .icon-steam,
a:active .icon-steam {
    color: #000000;
}

a:hover .icon-github,
a:active .icon-github {
    color: #000000;
}

a:hover .icon-tumblr,
a:active .icon-tumblr {
    color: #35465c;
}

ul {
    list-style: none;
}
  
li:before {
    content: '\2022';
    padding: 10px;
    text-shadow: 2px 2px black;
}


/* Animation Stuff. What a pain! */

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fade-in-up {
    opacity: 0;
    -webkit-animation: fadeInUp ease-in 1;
    -moz-animation: fadeInUp ease-in 1;
    animation: fadeInUp ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.icon-one {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 2s;
}

.icon-two {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 2.1s;
}

.icon-three {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 2.2s;
}

.icon-four {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 2.3s;
}

.icon-five {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 2.4s;
}

.icon-six {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-delay: 2.5s;
}