/*
    font-family: 'Cardo', serif;
    font-family: 'Pathway Gothic One', sans-serif;
*/


body {
    background: #03171A;
    color: #fff;
    font-family: 'Cardo', serif;
    text-align: center;
}

.header {
    padding: 20% 0 15%;
}

.content {
    width: 50%;
    margin: 0 auto;
}

h1 {
    font-size: 28px;
    color: lightgoldenrodyellow;
    font-family: 'Pathway Gothic One', sans-serif;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 6px;
}


h2 {
    font-size: 64px;
    margin-top: 0;
    margin-bottom: 30px;
    color: #ffd200;
    font-family: 'Pathway Gothic One', sans-serif;
    line-height: 1.4em;
}

h2.small {
    font-size: 40px;
}

h3 {
    font-size: 28px;
    font-family: 'Pathway Gothic One', sans-serif;
    color: #a7a9b8;
    text-transform: uppercase;
}

p {
    line-height: 1.6em;
    font-size: 20px;
}

a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

a:hover {
    text-decoration: none;
    color: #fff;
}

a.text {
    position: relative;
    padding: 0 6px 2px 6px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
}

a.text strong,
a.text span {
    position: relative;
    z-index: 10;
}

a.text:before {
    content: "";
    height: 100%;
    width: 0;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #50aadb;
    transition: all 0.25s;
    z-index: 1;
}

a.text:hover {
    text-decoration: none;
    color: #fff;
}

a.text:hover span {
    color: #fff;
}

a.text:hover:before {
    width: 100%;
}

/* Social */
ul.social {
    margin: 30px 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

ul.social li {
    padding: 15px;
    margin: 0;
}

ul.social li a {
    display: inline-block;
    width: 52px;
    height: 52px;
    background: #50aadb;
    border-radius: 26px;
    line-height: 48px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

ul.social li a:hover {
    text-decoration: none;
    background: #004151;
}

ul.social li a img {
    vertical-align: middle;
    width: 20px;
    height: auto;
}

/* Intro */
.intro {
    margin-bottom: 8%;
}

/* Featured works  */
.featured-works ul {
    list-style-type: none;
    width: 65%;
    margin: auto;
    padding: 0;
}

.featured-works ul li {
    border-bottom: 1px solid #4f5379;
}

.featured-works ul li:last-child {
    border: none;
}

.featured-works ul li a {
    display: block;
    padding: 6% 0;
}

.featured-works ul li a strong {
    font-family: 'Pathway Gothic One', sans-serif;
    display: block;
    font-size: 32px;
    margin-bottom: 6px;
}

.featured-works ul li a span {
    display: block;
    font-size: 18px;
    color: #a7a9b8;
}

.contact {
    padding: 8% 0 12%;
}

.btn {
    font-family: 'Pathway Gothic One', sans-serif;
    display: inline-flex;
    align-items: center;
    border: 2px solid #ffd200;
    height: 50px;
    padding: 0 2.8em;
    width: auto;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.btn:hover {
    background: #ffd200;
    color: #002b36;
}

#myCanvas {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-color: #002b36;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.notif_wrapper {
    position: absolute;
    margin: auto;
    width: 50%;
    top: 50%;
    left: 50%;
    font-family: 'Orbitron', sans-serif;
    display: none;
    font-size: 2.2rem;
    transition: all 0.6s;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

#game_interface {
    display: none;
    font-family: 'Orbitron', sans-serif;
}

#game_interface header {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 15px;
}

#game_interface header .label {
    color: #a7a9b8;
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
    width: 125px;
}

#game_interface header .value {
    display: block;
    color: #ffd200;
    font-weight: normal;
    font-size: 24px;
}

#game_interface footer {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}

#game_interface footer .label {
    color: #a7a9b8;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

#game_interface footer .value {
    color: #ffd200;
    margin-right: 20px;
}


/**********************************************************************
 * Responsive
 */
@media only screen and (max-device-width: 480px) {
    .content {
        width: 90%;
    }

    h2 {
        font-size: 48px;
    }

    .featured-works ul {
        width: 100%;
    }

    h2.small {
        font-size: 36px;
    }
}