html {
    scroll-behavior: smooth;
    scroll-behavior: auto;
	background-color: #232121;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    width: 100%;
    height: 2.5vw;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
	font-size: 2vw;
    justify-content: space-between;
    background-color: rgb(68, 68, 68, 0.6);
    position: fixed;
}

.logo {
    width: 5vw;
    cursor: pointer;
    margin-left: 2%;
    transition: 0.5s;
}

.logo:hover {
    filter: brightness(120%);
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: #ffff;
    transition: 0.5s;
}

.navbar ul li a:hover {
    color: rgb(199, 199, 199);
}

.home h1 {
	color: #CCCCCC;
	font-size: 150px;
	margin-bottom: 5px;
	margin-right: 45%;
}

.home h2 {
	color: #CCCCCC;
	font-size: 35px;
	margin-right: 45%;
}

.home {
    width: 100%;
    height: 100vh;
    background-color: rgb(26, 26, 26);
	display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
}

.games h1 {
	color: #CCCCCC;
	font-size: 75px;
	transform: translateY(150px);
    margin-bottom: 5px;
}

.games {
    width: 100%;
    height: 100vh;
    background-color: rgb(30, 30, 30);
    text-align: center;
}

.games a img {
	margin-top: 13%;
	border-radius: 25px;
	width: 50vh;
	height: 62.5vh;
}

.contact h1 {
	color: #CCCCCC;
	font-size: 75px;
	transform: translateY(150px);
    margin-bottom: 5px;
}

.contact {
    width: 100%;
    height: 100vh;
    background-color: rgb(26, 26, 26);
    text-align: center;
}

.footer {
	text-align: center;
	padding: 5px;
}

@media screen and (max-width: 1600px) {
	.navbar {
		height: 2%;
		padding: 75px 0;
		font-size: 3.2vw;
	}
	.logo {
		width: 15vw;
	}
}

@media screen and (max-width: 1090px) {
	.games img {
		margin-top: 20%;
		width: 30%;
		height: 42.5%;
	}
	.home h1 {
		font-size: 250px;
		margin-right: 0%
	}
	.home h2 {
		font-size: 50px;
		margin-right: 0%
	}
}

@media screen and (max-width: 730px) {
	.navbar {
		height: 1%;
		padding: 45px 0;
		font-size: 3.2vw;
	}
	.logo {
		width: 12vw;
	}
	
	.games img {
		margin-top: 35%;
	}
}

@media screen and (max-height: 1081xp) {
	.navbar {
		height: 15vw;
		padding: 75px 0;
		font-size: 3.2vw;
	}
	.logo {
		width: 15vw;
	}
}