    /*--------------*/
    .height-from-w {
        position: relative;
    }
    
    .height-from-w:before{
      content: "";
      display: block;         
      margin-top: 170%; /*set*/
    }
    
    .height-from-w-content{
      position:  absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
    }
    /*--------------*/

    body{
        background-color: rgb(240, 240, 240);
        padding: 0px;
        margin: 0px;
    }
    .content{
        max-width: 1200px;
        margin:auto;
        padding: 10px 10px;
    }
    .img{
        width: 100%;
        height: 80%;
    }
a {
  outline: none;
  text-decoration: none;
  color: #437a16;
  /*padding: 2px 1px 0;*/
}
a:visited {
  color: #437a16;
}
    .center{
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		height: 20%;
	}
    .center a{
        color: black;
	}
	.center a:visited {
	    color: black;
	}
    .center a:hover{
        color: black;
        text-decoration: underline dotted;
	}

    #top{
        /*background-color: rgb(7, 3, 29);*/
        min-height: 100px;
    }
    #bottom{
        background-color:rgb(13, 14, 13);
        min-height: 50px;
        color: #eee;
    }

    .row > li{
        list-style: none;
    }
    ul{
        margin:0px;
        padding: 0px;
    }

    li > a{
        background-color: #fff;
        border: 2px solid #242225;
        border-radius: 15px;
        margin: 5px 0px;
        padding: 7px 10px;
        display: block;
        color: black;
    }
    li > a:visited {
        color: black;
    }
    li > a:hover {
        /*outline: dotted red;*/
        background-color: #eee;
    }

    .game-box{
        padding: 10px;
    }


    .featured-image {
        background-size: cover;
        background-position: center;
	    height:200px;
    }

    .box-name{
        font-size: 1.3em;
        height: 30px;
        display: flex;
		justify-content: start;
		align-items: center;
        padding-bottom: 5px;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
        font-weight: 100;
    }
    .box-name::before{
        display: inline-block;
        height:100%;
        width: 4px;
        margin-right: 10px;
        background-color: black;
        content: "";
    }

    .logo{
        display: flex;
		/*justify-content: center;*/
		align-items: center;
		text-align: center;
        font-size: 1.5em;
    }
    .bottom-info{
        display: flex;
		/*justify-content: center;*/
		align-items: center;
		text-align: center;
        font-size: 1.0em;
    }

.post-header{
    display: flex;
    flex-wrap: wrap;
    margin-bottom:10px;
}
.post-poster{ 
    width: 200px;
    max-width: 100%;
    flex-grow: 1;
    text-align: center; 
    margin-right: 20px;
    margin-bottom: 10px;
}
.post-info{
    min-width: 215px;
    flex-grow: 10000;
}
    
hr{
    margin: 10px 0;
	padding: 0;
	height: 10px;
	border: none;
	border-top: 1px solid #333;
	box-shadow: 0 10px 10px -10px #8c8b8b inset;
}   
.youtube{
    position: relative;
    background-size: cover;
    background-position: center;
}
.youtube .play {
    background: url(/img/youtube-play-btn.png) no-repeat;
    background-position: 0 -50px;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    position: absolute;
    height: 50px;
    width: 69px;
    transition: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.youtube:hover .play {
  background-position: 0 0;
}

.download{
    text-align:center;
}
.download > a{
    display: inline-block;
    border: 0px;
    border-radius: 10px;
    color:#fff;
    background-color: #000;
    padding: 20px 40px;
    margin: 20px;
    transition: 1s;
}
.download > a:hover{
    background-color: #555;
    color:#f00;
    transform: scale(1.2);
}


.pages{
    text-align:center;
}
.pages>a{
    display: inline-block;
    border: 0px;
    border-radius: 7px;
    color:#fff;
    background-color: #000;
    padding: 10px 10px;
    margin: 10px;
    transition: 1s;
}