html {
    width: 100%;
    height: 100%;
}

body {
    background-color: black;
    background-image:url(../images/background.jpg);
    background-repeat:no-repeat;
    background-size: 100% 100%;/*contain;*/
    background-position: center;

    height: 100%;
	font-family: 'GRATIS', Arial;
	text-transform: uppercase;
    margin: 0;
    padding: 0;
    color: white;
    text-align: center;
}

.news {
    position: fixed;
    right: 5%;
    top: 5%;
    width: 50%;
    height: 15%;
    border-radius: 10px;
    background-color: rgba(0,0,0,0.4);
    font-size: 20px;
}
.news-title {
    font-weight: bold;
    text-align:right;
    font-size: 24px;
    padding-right: 20px;
    padding-bottom: 20px;
}
#gamecast-logo {
	padding-top:20px;
	height: 200px;
	font-size: 6em;
	font-weight: bold;
}
.welcome-text {
	font-size: 3em;
	height: 70px;
}

.header {
	height: 42%;
}

.content-table {
	height: 58%;
    display: table;
    width: 100%;
}

.row {
    display:table-row;
}

.cell {
    display:table-cell;
}

.column1 {
    width: 3%;
}

.column2 {
    width: 63%;
}

.column3 {
    width: 20%;
    position: relative;
}

.games {
    display: table;
    width: 100%;
    height: 500px;
}


.game-container {
    height: 100%;
    display: table-cell;
}

.game-container .game-icon {
    background-size: contain;
    width: 100%;
    height: 100%;
}

.full-license .game-icon{
    -webkit-filter: grayscale(100%) blur(1px);
    filter: grayscale(100%) blur(1px);
}

.paid-version-text {
    display: none;
    position: absolute;
    margin-top: 180px;
    color: white;
    text-shadow: black 2px 2px 5px;
    font-family: Sans-serif, Arial;
    text-transform: none;
    font-size: 1em;
}

.full-license .paid-version-text {
    display: block;
}

/*.game-container .game-text {
	background-color: rgba(0,0,0,0.3);
	width: 200px;
	height: 24px;
	font-size: 20px;
	border-radius: 12px;
}*/

.game-select {
	width: 100%;
	height: 100%;
	background-size: contain;
	background-image: url(../images/app-select.png);
	background-repeat: no-repeat;
	display: none;
}

.selected .game-select {
	display: block;
}

.icon-snake {
	background:url(../images/app-snake.png) no-repeat;
}
.icon-pong {
	background:url(../images/app-pong.png) no-repeat;
}
.icon-xonix {
	background:url(../images/app-xonix.png) no-repeat;
}
.icon-tetrominoes {
	background:url(../images/app-tetrominoes.png) no-repeat;
}
.icon-flapper {
	background:url(../images/app-flapper.png) no-repeat;
}
.icon-breakout {
	background:url(../images/app-break.png) no-repeat;
}

.disabled .game-icon {
    opacity: 0.5;
}

.players {
	display: none;
    position: absolute;
	font-size: 1.3em;
    padding: 20px 25px;
}
