@import url(https://fonts.googleapis.com/css?family=Permanent+Marker);
@import url('https://fonts.googleapis.com/css?family=Montserrat:400');
@import url('https://fonts.googleapis.com/css?family=Coiny');

body {
    font-family: 'Coiny', cursive;
    background-color: #F6F6F6;
    /* background-color: #272727; */
    margin: 0px;

    /* unselectable */
    -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

/* Red header */
#header {
    height: 215px;
    margin-bottom:120px;
    padding: 0px !important;
    background-color: red;
    font-family: 'Permanent Marker', 'cursive';
    text-shadow: -3px 0 black, 0 3px black, 3px 0 black, 0 -3px black;
    color: white;
    border-bottom: solid 1px #555;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6) !important;
    width: 100% !important;
    margin-right: 0px !important;
}

/* Header --> Dumb Games */
#title {
    font-size: 4em;
    padding-top: 34px;
    font-weight: bold;
}

/* Header --> For Your Entertainment */
#subtitle {
    margin-top: 0px;
    font-size: 2em;
    font-weight: bold;
}

/* Header --> Links */
.aw {
    color: white;
    text-decoration: none;
}

.socialmedia {
    display: inline-block;
    font-size: 2em;
    padding: 20px;
    margin-top: 20px;
    cursor: pointer;
    position: relative;
    top: 20px;
}

.headerLinks {
    color: white !important;
    display: inline-block;
    vertical-align: middle;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    transition-duration: 0.3s;
    transition-property: transform;
}

.headerLinks:hover,
.headerLinks:focus,
.headerLinks:active {
    color: white !important;
    transform: scale(1.3);
}

/* Header --> News Scrolling */
#news {
    width: 100% !important;
    margin-top: 30px;
    color: white;
    font-family: 'Montserrat';
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    font-size: 1.3em;
}

/* bootstrap body overrides */
.row {
    max-width: 80% !important;
}

/* Body */

#root {
    padding-bottom: 120px;
}

/* All the games */
.boxLink {
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    color: white;
    text-decoration: none;
}

.boxLink:hover {
    color: white !important;
    text-decoration: none;
}

.bottommargin {
    position: relative;
    top: 15px;
    margin-bottom: 15px;
}

.gamedesc {
    position: relative;
    top: 15px;
    font-size: 1.12em;
    font-family: 'Montserrat';
}

.titletoobig {
    font-size: 1.27rem !important;
}

.bottommargintoobig {
    position: relative;
    top: 15px;
    margin-bottom: 5px;
}

.gameBox {
    display: inline-block;
    vertical-align: middle;
    transform: translateZ(0);
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    transition-duration: 0.3s;
    transition-property: transform;
    width: 300px;
    height: 100px;
    border: solid 1px #555;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6) !important;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6) !important;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6) !important;
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6) !important;
    margin: 15px;
    background-color: red;
    cursor: pointer;
}

.gameBox:hover,
.gameBox:focus,
.gameBox:active {
    transform: scale(1.15);
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100% !important;
    background-color: #393939 !important; 
    color: #cbcbcb !important;
    padding-top: 20px !important; 
    padding-bottom: 20px !important;
    font-size:1.2em;
}