@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300&display=swap');
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-thumb {
  background: #e1e1e1;
  border: 0px none #ffffff;
  border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}
::-webkit-scrollbar-thumb:active {
  background: #000000;
}
::-webkit-scrollbar-track {
  background: #212121;
  border: 0px none #ffffff;
  border-radius: 50px;
}
::-webkit-scrollbar-track:hover {
  background: #212121;
}
::-webkit-scrollbar-track:active {
  background: #333333;
}
::-webkit-scrollbar-corner {
  background: transparent;
}
*{
	margin:0px;
	padding:0px;
	font-family: 'Roboto', sans-serif;
}

body {
	background-color:#212121;
	color:#fff;
}

div.container {
	display:block !important;
	width:100%;
	height:600px;
}

div.game {
	float:left;
	width:200px;
	height:300px;
    margin-top: 35px;
	margin-left: 20px;
	margin-bottom: -10px;
    -webkit-border-radius: 6px 6px 6px 6px;
    border-radius: 6px 6px 6px 6px;
    background-color:#e9ebf0;
}

div.game:hover {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

img.icon {
	width:150px;
	height:150px;
	margin-top:15px;
	margin-left:25px;
}

h1.logo {
	margin-top:55px;
	margin-bottom:55px;
	font-size:100px;
	text-align:center;
	text-shadow: 0 1px 0 #ccc,
                 0 2px 0 #c9c9c9,
                 0 3px 0 #bbb,
                 0 4px 0 #b9b9b9,
                 0 5px 0 #aaa,
                 0 6px 1px rgba(0,0,0,.1),
                 0 0 5px rgba(0,0,0,.1),
                 0 1px 3px rgba(0,0,0,.3),
                 0 3px 5px rgba(0,0,0,.2),
                 0 5px 10px rgba(0,0,0,.25),
                 0 10px 10px rgba(0,0,0,.2),
                 0 20px 20px rgba(0,0,0,.15);
}

h1.title {
	text-align:center;
	margin-top:10px;
}

a.login {
	color:#fff;
	text-decoration: none;
	position:relative;
	left:96%;
	top:5px;
}

a.gamelink {
	color:#212121;
	text-decoration:none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	text-decoration: none;
}