@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,600;0,700;0,800;0,900;1,500;1,600;1,700;1,800;1,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	font-family: 'poppins';
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
}
html{
		scroll-behavior: smooth;
}
.banner{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10% 0;
	margin-top: 79px;
	background: url(og_mainpage.png);
	background-position: 50%;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	z-index: 7;
}
.banner .content{
	max-width: 30%;
	text-align: center;
}
h2{
	font-family: 'Chakra Petch';
	font-size: 40px;
	font-weight: 900;
	margin-bottom: 10px;
}
.banner .content p{
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
}
.menu{
	position: fixed;
	background: #000;
	top: 0;
	left: 0;
	width: 100%;
	padding: 15px 75px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
}
.menu img{
	width: 60px;
	z-index: 565;
}
.menu_box { 
	display: flex;
	justify-content: space-between;
	color: #000; 
	text-decoration: none; 
	transition: 0.3s;
	width: 30vw;
}
.menu_item{
	color: #fff; 
	font-size: 20px; 
	font-weight: 500;
}
.about .content h2{
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 10px;
}
.about .content p{
	color: #fff;
	font-size: 15px;
	letter-spacing: 1px;
}
.about{
	width: 100%;
	height: 600px;
	padding-right: 5%;
	background-image: url(https://cdn.supercell.com/supercell.com/210812123309/all/themes/supercell/img/18/bg_fp_nextstep.jpg);
  background-repeat: no-repeat;
  background-position: 20% 20%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.about .content{
	width: 40%;
}
.btn{
  background-color: #2979de;
  border: none;
  border-radius: 15px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  margin-top: 20px;
  width: 140px;
  padding: 10px 0;
  text-decoration: none;
  font-weight: 500;
  background-image: linear-gradient(45deg, #0862d4 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  transition: 1s;
}
.btn:hover{
  outline: 0;
  background-position: 0;
}
	#menu_toggle {
	display: none;
	opacity: 0;
}
@media (max-width: 991px){
	#menu_toggle {
	display: none;
	opacity: 0;
}
.menu_btn{
	background: black;
	width: 28px;
	cursor: pointer;
	transition: 0.3s;
	z-index: 10;
}
.menu_btn > span,
.menu_btn > span:before,
.menu_btn > span:after{
	display: block;
	position: absolute;
	width: 28px;
	height: 3px;
	background-color: #fff;
	transition-duration: 0.25s;
}
.menu_btn > span:before{
	content: "";
	top: -8px;
}
.menu_btn > span:after{
	content: "";
	top: 8px;
}
.menu_box{ 
	position: fixed; 
	visibility: hidden; 
	background: #000;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	text-align: center;
	padding: 60px 0;
	top: -100%;
	right: 0;  
	width: 100%; 
	height: 100vh; 
	transition: 0.6s;
	z-index: 9;
}
.menu_item {  
	color: #fff; 
	font-size: 25px; 
	font-weight: 400; 
	cursor: pointer;
}
#menu_toggle:checked ~ .menu_btn > span { 
	transform: rotate(45deg); 
} 

#menu_toggle:checked ~ .menu_btn > span::before {
	top: 0;
	transform: rotate(0); 
} 

#menu_toggle:checked ~ .menu_btn > span::after { 
	top: 0;
	transform: rotate(90deg); 
} 
#menu_toggle:checked ~ .menu_box { 
	visibility: visible;
	top: 0; 
}
.menu{
	padding: 15px 30px;
}
	.banner .content h2{
		font-size: 25px;
	}
	.banner .content p{
		font-size: 15px;
	}
.about{
	width: 100%;
	height: 600px;
	padding: 5%;
	background-image: url(https://cdn.supercell.com/supercell.com/210812123309/all/themes/supercell/img/18/bg_fp_nextstep.jpg);
  background-repeat: no-repeat;
  background-position: 20% 60%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.about .content{
	text-align: center;
	width: 90%;
}
.about .content h2{
	font-size: 25px;
}
.about .content p{
	font-size: 15px;
}
.games{
	padding: 50px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.about img{
	display: block;
}
}