
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
	margin:0;
	padding:0;
}

body{
	font-family: "Poppins", sans-serif;
	font-weight: 400;
}

a{
	text-decoration: none;
}

img {
	max-width: 100%;
}
.wrapper{
	background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 1) 100%);
	width: 100%;
}

.container{
display: flex;
justify-content: space-between;
width: 90%;
margin: 0 auto;	
}

header{
padding: 50px 0 120px 0;	
}

header .logo{
	text-transform: uppercase;
	font-size: 29px;
	font-weight: 800;
}

header nav{
	float:  right;
	
}

header nav ul{
	list-style: none;
	display: flex;
	flex-direction:row ;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

@media (max-width: 800px) {
	header nav ul{
		list-style: none;
		display: flex;
		justify-content: space-around;
		flex-direction: column;
		align-items: start;
	}
	header{
		padding: 50px 0 0 0;	
	}

}


header nav ul li{
	display: flex;
	margin: 2px 20px;
}



header nav ul li a{
	color: black;
	border-bottom: 1px solid white;

}

header nav ul li:not(.active):not(.btn) a:hover {
	border-bottom: 1px solid black;
}

header nav ul li.btn a{
	border: 2px solid black;
	padding: 9px 17px;
	border-radius: 5px;
	transition: all 500ms ease;

}

header nav ul li.btn a:hover {
	background: black;
	color: white;
}

/* -------------------------------------------------------------------------*/
.hero {
	padding-bottom: 100px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
}

.hero--info{
	width: 500px;
	padding-top: 70px;
	margin-bottom: 70px;
}

.hero--info h2{
	color: orange;
	font-size: 20px;
	font-weight: 600;
}

.hero--info h1{
	font-size: 40px;
	font-weight: 600;
	line-height: 1.2em;
}

.hero--info p{
	font-weight: 500;
	line-height: 170%;
	margin: 40px 0;
}

.hero--info .btn {
	font-size: 20px;
	background: orange;
	border-radius: 50px;
	padding: 15px 40px;
	border: 1;
	transition: all 500ms ease;
}

.hero--info .btn:hover {
	cursor: pointer;
	transform: scale(1.1);
	box-shadow: 2px 2px 5px black;
}

.hero img {
	width: 500px;
}

/*-----------------------------------------------------------------------------------*/
span img{
	width: 20px;
}


.trending{
	width: 80%;
	padding: 50px 0 ;
	font-weight: 600;
	font-size: 29px;
	flex-wrap: wrap;
}

.trending .see-all{
	color: white;
	background: black;
	border-radius: 5px;
	padding: 12px 24px;
	float: right;
	display: block;
	transition: all 0.5s ease;
}

.trending .see-all:hover{
	scale: 110%;
	rotate: 10deg;
	background: red;
}

.games{
	width: 80%;
	margin: 0 auto;
	padding: 50px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}
.block{
	display: flex;
	flex-direction: column;
	color: black;
	align-items: center;
}

.block span{
	padding-top: 10px;
}

.zopa{
	border-radius: 20px;
	box-shadow: 2px 2px 5px black;
	width: 220px;
	height: 200px;
	transition: all 500ms ease;
	margin: 5px;
}

.zopa:hover{
	scale: 110%;
	box-shadow: 2px 2px 15px black;
}

.big-text{
	padding: 50px 0;
	font-size: 29px;
	font-weight: 600;
	text-align:center;
	width: 80%;
}

.baner{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 80%;
	margin: 0 auto;
}

.baner h3{
	align-items: flex-start;
}

.baner p{
	
}

.baner img{
	height: 40%;
	border-radius: 20px;
	margin: 50px 0;
}