.header
{
	background-color: #ffdb58;
	text-align: center;
	padding: 20px 0px;
	font-weight: bold;
}

.header img
{
	width: 200px;
}

.content-wrap
{
	background-image: url('https://images.rawpixel.com/image_social_landscape/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIzLTEyL2Rlc2lnbndpdGhtZTA5X2VtcHR5X3NjZW5lX29mX2Nhc2lub19nb2xkZW5fcmF0aW9fYWNjaWRlbnRhbF9yZV8xNTYzYzFmNC1kNzc3LTQ0ZDktYTMyMy02YmE2YTAyOTFlYWRfMS5qcGc.jpg');
	padding: 80px 0px;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 800px;
}
.game-icon{
    border:10px solid #FFD700;
}
.game-icon img
{
	width: 100%;
	height: 100%;
	transition: 0.8s;
}

.game-icon img:hover
{
	filter: drop-shadow(0 0 1.2rem rgb(0,0,0));
	transform: scale(1.1);
}

.game-modal
{
	padding: 20px;
	border-radius: 20px;
	border: 3px solid gold;
	background-image: url('https://images.rawpixel.com/image_social_landscape/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIzLTEyL2Rlc2lnbndpdGhtZTA5X2VtcHR5X3NjZW5lX29mX2Nhc2lub19nb2xkZW5fcmF0aW9fYWNjaWRlbnRhbF9yZV8xNTYzYzFmNC1kNzc3LTQ0ZDktYTMyMy02YmE2YTAyOTFlYWRfMS5qcGc.jpg');
}

.game-modal .modal-title
{
	text-align: center;
	color: white;
	font-weight: bold;
	font-size: 30px;
	margin: 10px auto;
}

.download-button
{
	color: white;
	text-align: center;
	padding: 20px;
	transition: 0.8s;
	font-weight: bold;
	opacity: 0.8;
	border-radius: 10px;
	border: 2px solid white;
}

.download-button:hover
{
	box-shadow: 0 0 1.2rem yellow;
	opacity: 1;
}

.download-button.andriod
{
	background-color: #3DDC84;
}

.download-button.window
{
	background-color: #357EC7;
}

.download-button.ios
{
	background-color: grey;
}

.download-button.html
{
	background-color: #FF5733;
}

.download-button.html img
{
    height: 40px;
    width: 40px;
}

.side-menu-button
{
	position: fixed;
	bottom: 0px;
	right: 0px;
	transition: 1s;
}

.side-menu-button img
{
	height: 170px;
}

.side-menu-button.active
{
	right: -200px;
}

.side-menu-banner
{
	position: fixed;
	bottom: 0px;
	transition: 1s;
	right: -600px;
	width: 600px;
	height: 180px;
}

.side-menu-banner img
{
	object-fit: cover;
	width: 600px;
	height: 180px;
}

.side-menu-banner.active
{
	right: 0px;
}

.side-menu-close-button
{
	position: fixed;
	bottom: 130px;
	right: -50px;
	transition: 1s;
	width: 50px;
	height: 50px;
	border-radius: 10px;
	background-color: white;
	border: 2px solid black;
	font-weight: bold;
	text-align: center;
	font-size: 30px;
	cursor: pointer;
}

.side-menu-close-button.active
{
	right: 0px;
}

@media (max-width: 767px){

	.game-modal .modal-title
	{
		font-size: 20px;
		margin: 5px auto;
	}

	.download-button
	{
		font-size: 11px;
		padding: 5px;
	}

	.download-button img
	{
		height: 30px;
	}

	.side-menu-banner
	{
		right: -380px;
		width: 380px;
		height: 120px;
	}

	.side-menu-banner img
	{
		object-fit: cover;
		width: 380px;
		height: 120px;
	}

	.side-menu-close-button
	{
		bottom: 70px;
		right: -50px;
	}
}