* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #3d8fe4;
}

.container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 55px;
    padding-left: 15px;
    padding-right: 15px;
}

/*-----------------------
    Content
-----------------------*/
#content {
    color: white;
    text-align: center;
}

#content .title {
    margin-top: 0;
    margin-bottom: 25px;
    padding-top: 20px;
    font-size: 34px;
}

#content .description {
    font-size: 26px;
    font-weight: 300;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.3;
}

#content .social {
    margin-top: 60px;
}

#content .social a {
    display: inline-block;
    background-color: white;
    color: #3d8fe4;
    font-size: 30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    margin-left: 20px;
}

#content .social a:first-child {
    margin-left: 0;
}


/*-----------------------
    Helper classes
-----------------------*/
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear:both
}

img {
    border: medium none;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-center {
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

a {
    text-decoration: none;
    color: inherit;
}

.visible-sm {
    display: none;
}

.visible-xs {
    display: block;
}

@media screen and (min-width: 768px) {
    #content .title {
        font-size: 60px;
        margin-bottom: 35px;
    }

    #content .description {
        font-size: 42px;
    }

    #content {
        text-align: right;
    }

    #content #game-data {
        width: 65%;
        margin-right: 5%;
        float: left;
    }

    #content #game-image {
        width: 30%;
        float: left;
    }

    .visible-sm {
        display: block;
    }

    .visible-xs {
        display: none;
    }

    #content .social a {
        font-size: 42px;
        width: 90px;
        height: 90px;
        line-height: 90px;
    }
}

@media screen and (min-width: 992px) {
    #content .title {
        font-size: 70px;
    }

    #content .description {
        font-size: 56px;
    }

    #content .social {
        margin-top: 90px;
    }

    #content .title {
        padding-top: 60px;
    }
}