
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: monospace;
    line-height: 24px;
}

.game-page-layout {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    width: 100%;
    background-color: transparent;
    justify-content: space-evenly;
}


div.game-main {
    box-sizing: border-box;
    margin: 15px 40px;
    max-width: 800px;
}

.game-main h1 {
    margin: 45px 0;
    font-family: "VT323", monospace;
    font-weight: 400;
    font-style: normal;
    color: rgb(255, 72, 11);
    font-size: 3.5em;
    line-height: normal;
  
}

.game-description h2, .related-section h2 {
    font-family: "VT323", monospace;
    font-weight: 400;
    font-style: normal;
    color: rgb(255, 72, 11);
    font-size: 1.5em;
    margin-bottom: 15px;
    padding: 0 !important;
}


aside.game-sidebar {
    width: 300px;
}

.game-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
    max-width: 868px;
    box-sizing: border-box;
}

.game-wrapper > iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 477px;
    border: none;
    margin: 25px 0;
    box-sizing: border-box;
}

/*------ TAGS -----*/

.game-description {
   margin: 30px 0; 

}

.game-meta {
 display: flex;
 flex-flow: row nowrap;
 justify-content: space-between;
 width: 100%;
 opacity: 0;
}


/* ------- ADS ---------*/


.ad-slot {
    background-color: blue;
    margin: 15px;
    box-sizing: border-box;
}
.ad-leaderboard {
    max-width: 728px;
    height: 90px;
    margin: 20px 0;
    box-sizing: border-box;
}

.ad-sidebar {
    max-width: 300px;
    height: 600px;
    width: 100%;
    margin: 0;
}



@media (max-width: 1200px) {
  .game-page-layout {
    flex-flow: row wrap;
    justify-content: center;
  }
}