#index-title
{
	color: rgb(228,29,54);
	text-align: center;

	font-family: CartamundiJotia-Medium;
	font-size: 60px;

	padding-top: 50px;
}

@media screen and (max-width: 480px)
{
	#index-title
	{
		font-size: 42px;
	}
}

#index-language-container
{
	position: relative;

	width: 170px;
	height: 25px;

	margin: 40px auto;
}

#index-language-selection
{
	background-color: rgb(228,29,54);
	color: white;

	width: 100%;
	height: 100%;
	line-height: 25px;

	text-align: center;

	cursor: pointer;
}

#index-language-chevron
{
	background-image: url('/assets/images/icon_chevron.png');
	background-repeat: no-repeat;
	background-position: center;

	position: absolute;
	width: 11px;
	top: 0px;
	bottom: 0px;
	right: 10px;

	transition: 200ms ease-in-out;
}

#index-language-chevron.active
{
	transform: rotate(180deg);
}

#index-language-selection-dropdown
{
	display: none;
	position: absolute;
	right: 0px;

	background-color: rgb(255,255,255);

	width: 100%;

	z-index: 12;
}

.index-language-selection-dropdown-item
{
	color: rgb(228,29,54);

	text-align: center;

	height: 25px;
	line-height: 25px;

	cursor: pointer;
}

#games-container
{
	width: 1086px;
	margin: 0px auto;
}

.index-game
{
	background-repeat: no-repeat;
	background-position: center;

	width: 352px;
	height: 195px;

	margin: 5px;
	float: left;

	cursor: pointer;
}

.index-game-icon
{
	background-repeat: no-repeat;
	background-position: center bottom;

	width: 100%;
	height: 115px;
}

.index-game-text
{
	color: white;
	text-align: center;

	font-family: CartamundiJotia-Medium;
	font-size: 32px;


	margin-top: 5px;
}

@media screen and (max-width: 1085px)
{
	#games-container
	{
		width: 724px;
	}
}

@media screen and (max-width: 723px)
{
	#games-container
	{
		width: 100%;
	}

	.index-game
	{
		float: none;
		width: 100%;
		max-width: 352px;

		margin: 10px auto;
	}
}