body {
    background-image: url("../../images/bg.jpg");
    background-size: cover;
    background-position: top center;
}

header p {
    color: rgba(255, 255, 255, 0.35);
}

a>h2 {
    font-family: cursive;
    font-size-adjust: auto;
    font-weight: bold;
}

.icon:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
    background-color: white;
    border-radius: 100%;
}

.icon > .label {
    display: none;
}

.icon.style2 {
    border-radius: 100%;
    display: inline-block;
    padding: 0.4em;
    border: solid 1px;
    background-color: lightgray;
}

.icon.style2:before {
    display: block;
    width: 1.25em;
    height: 1.25em;
    line-height: 1.25em;
    font-size: 1.35em;
}

@media screen and (max-width: 736px) {
    .icon.style2:before {
        font-size: 1em;
    }
}


/* Image */

.image {
    border-radius: 4px;
    border: 0;
    display: inline-block;
    position: relative;
}

.image img {
    border-radius: 4px;
    display: block;
}

.image.left,
.image.right {
    max-width: 40%;
}

.image.left img,
.image.right img {
    width: 100%;
}

.image.left {
    float: left;
    padding: 0 1.5em 1em 0;
    top: 0.25em;
}

.image.right {
    float: right;
    padding: 0 0 1em 1.5em;
    top: 0.25em;
}

.image.fit {
    display: block;
    margin: 0 0 2em 0;
    width: 100%;
}

.image.fit img {
    width: 100%;
}

.image.main {
    display: block;
    margin: 0 0 3em 0;
    width: 100%;
}

.image.main img {
    width: 100%;
}


/* List */

ol {
    list-style: decimal;
    margin: 0 0 2em 0;
    padding-left: 1.25em;
}

ol li {
    padding-left: 0.25em;
}

ul {
    list-style: disc;
    margin: 0 0 2em 0;
    padding-left: 1em;
}

ul li {
    padding-left: 0.5em;
}

ul.alt {
    list-style: none;
    padding-left: 0;
}

ul.alt li {
    border-top: solid 1px rgba(255, 255, 255, 0.25);
    padding: 0.5em 0;
}

ul.alt li:first-child {
    border-top: 0;
    padding-top: 0;
}

ul.icons {
    cursor: default;
    list-style: none;
    padding-left: 0;
}

ul.icons li {
    display: inline-block;
    padding: 0 1em 0 0;
}

ul.icons li:last-child {
    padding-right: 0;
}

ul.actions {
    cursor: default;
    list-style: none;
    padding-left: 0;
}

ul.actions li {
    display: inline-block;
    padding: 0 1em 0 0;
    vertical-align: middle;
}

ul.actions li:last-child {
    padding-right: 0;
}

ul.actions.small li {
    padding: 0 0.5em 0 0;
}

.thumbnails {
    display: -webkit-flex;
    margin: 0 0 2em -2em;
}

.thumbnails a {
    border-bottom: none;
    display: block;
    text-align: center;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    background-color: lightgray;
    overflow: hidden;
    margin-bottom: 30px;
}

.thumbnails a img {
    display: block;
    width: 100%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    
}

.thumbnails a h3 {
    margin: 1em;
}

.thumbnails a:hover {
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25), 0 0 0.5em 0 #FF6382;
}

.thumbnails > div {
    width: calc(100% / 3);
    padding-left: 3em;
    
}

.thumbnails > div >:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1280px) {
    .thumbnails {
        margin: 0 0 2em -1.5em;
    }
    .thumbnails a {
        margin: 0 0 1.5em 0;
    }
    .thumbnails > div {
        padding-left: 1.5em;
    }
}

@media screen and (max-width: 980px) {
    .thumbnails h3 {
        font-size: 0.8em;
    }
}

@media screen and (max-width: 480px) {
    .thumbnails {
        display: block;
    }
    .thumbnails a {
        margin: 0 0 2em 0 !important;
    }
    .thumbnails > div {
        display: block;
        width: 100%;
    }
    .thumbnails > div:last-child >:last-child {
        margin-bottom: 0 !important;
    }
    .thumbnails h3 {
        font-size: 1em;
    }
}

#wrapper {
    max-width: 68em;
    width: 100%;
    margin: 0 auto;
    padding: 0 2em;
    opacity: 1;
    filter: none;
    -moz-transition: opacity 1s ease, -moz-filter 1s ease;
    -webkit-transition: opacity 1s ease, -webkit-filter 1s ease;
    -ms-transition: opacity 1s ease, -ms-filter 1s ease;
    transition: opacity 1s ease, filter 1s ease;
}


/* Header */

#header {
    text-align: center;
    padding: 6em 0 4em 0;
}

#header .avatar {
    border-radius: 100%;
    display: inline-block;
    margin: 0 0 2em 0;
    padding: 0.5em;
    border: solid 1px rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.075);
}

#header .avatar img {
    border-radius: 100%;
    display: block;
    width: 10em;
}

@media screen and (max-width: 1280px) {
    #header {
        padding: 4em 0 2em 0;
    }
}