@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
	min-height: 100vh;
	background: url('novawebBG.jpg');
	background-size: cover;
	background-position: center;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1.3rem 10%;
	/* background: rgba(0, 0, 0, .1); */
	/* backdrop-filter: blur(50px); */
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
}

.header::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: red;
	background: rgba(0, 0, 0, .1);
	backdrop-filter: blur(50px);
	z-index: -1;
}

.header::after{
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
	transition: .5s;
}

.header:hover::after{
	left: 100%;
}

.logo{
	font-size: 2rem;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
}

.navbar a{
	font-size: 1.15rem;
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	margin-left: 2.5rem;
}

#check{
	display: none;
}

.icons{
	position: absolute;
	font-size: 2.8rem;
	color: #fff;
	cursor: pointer;
	display: none;
	right: 5%;
}

/* BREAKPOINTS */
@media (max-width: 992px) {
	.header{
		padding: 1.3rem;
	}
}

@media (max-width: 768px) {
	.icons{
		display: inline-flex;
	}

	#check:checked~.icons #menu-icon{
		display: none;
	}

	.icons #close-icon{
		display: none;
	}

	#check:checked~.icons #close-icon{
		display: block;
	}

	.navbar{
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: 0;
		background: rgba(0, 0, 0, .1);
		backdrop-filter: blur(50px);
		box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
		transition: .3s ease;
		overflow: hidden;
	}

	#check:checked~.navbar{
		height: 17.7rem;
	}

	.navbar a{
		display: block;
		font-size: 1.1rem;
		margin: 1.5rem 0;
		text-align: center;
		transform: translateY(-50px);
		opacity: 0;
		transition: .3s ease;
	}

	#check:checked~.navbar a{
		transform: translateY(0);
		transition-delay: calc(.15s * var(--i));
		opacity: 1;
	}

}

button{
	padding: 9px 25px;
	background-color: rgba(0,136,169,1);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease 0s;
	margin-left: 20px;
	color: #fff;
	text-decoration: none;
}

button:hover{
	background-color: rgba(0,136,169,0.8);
}

.home{
	height: 100vh;
	display: flex;
	align-items: center;
	padding: 0 10%;
}

.home-content{
	max-width: 600px;
}

.home-content h1{
	font-size: 56px;
	font-weight: 700;
	color: lightblue;
	outline: black;
}

.home-content h3{
	font-size: 32px;
	font-weight: 700;
	color: white;
}

.home-content p{
	font-size: 16px;
	color: white;
}

.home-content .btn-box{
	display: flex;
	padding-top: 30px;
}
.btn-box a{
	display: inline-flex;
	justify-content: center;
	align-items: center;
}


#icon{
	height: 100px;
	width: 100px;
}

.about{
	height: 100vh;
	display: flex;
	align-items: right;
	padding: 0 10%;
	align-self: right;
	float: right;
	padding-top: 7%;
}

.about-content{
	max-width: 600px;
}

.about-content h1{
	font-size: 56px;
	font-weight: 700;
	color: lightblue;
	outline: black;
	align-self: right;
	text-align: right;
}

.about-content h3{
	font-size: 32px;
	font-weight: 700;
	color: purple;
	text-align: right;
}

.about-content p{
	font-size: 16px;
	color: white;
	text-align: right;
}

.about-content .btn-box{
	display: flex;
	padding-top: 30px;
	align-items: right;
	float: right;
}
.btn-box a{
	display: inline-flex;
	justify-content: right;
	align-items: right;
}

button{
	padding: 9px 25px;
	background-color: rgba(0,136,169,1);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease 0s;
	margin-left: 20px;
	color: #fff;
	text-decoration: none;
}

button:hover{
	background-color: rgba(0,136,169,0.8);
}
.projects{
	height: 100vh;
	display: flex;
	align-items: center;
	padding: 0 10%;
	float: left;
}

.projects-content{
	max-width: 600px;
}

.projects-content h1{
	font-size: 56px;
	font-weight: 700;
	color: lightblue;
}

.projects-content h3{
	font-size: 32px;
	font-weight: 700;
	color: purple;
}

.projects-content p{
	font-size: 16px;
	color: white;
}

.projects-content .btn-box2{
	display: flex;
	padding-top: 30px;
}
.btn-box2 a{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}


.games{
	height: 100vh;
	display: flex;
	align-items: right;
	padding: 10%;
	float: right;
	text-align: right;
}

.games-content{
	max-width: 600px;
	text-align: right;
}

.games-content h1{
	font-size: 56px;
	font-weight: 700;
	color: lightblue;
	text-align: right;
}

.games-content h3{
	font-size: 32px;
	font-weight: 700;
	color: purple;
	text-align: right;
}

.games-content p{
	font-size: 16px;
	color: white;
	text-align: right;
}

.games-content .btn-box3{
	display: flex;
	padding-top: 30px;
	text-align: right;
}
.btn-box3 a{
	display: inline-flex;
	justify-content: right;
	align-items: right;
	text-decoration: none;
	text-align: right;
	align-self: right;
}

.software{
	height: 100vh;
	display: flex;
	align-items: center;
	padding: 0 10%;
	float: left;
}

.software-content{
	max-width: 600px;
}

.software-content h1{
	font-size: 56px;
	font-weight: 700;
	color: lightblue;
}

.software-content h3{
	font-size: 32px;
	font-weight: 700;
	color: purple;
}

.software-content p{
	font-size: 16px;
	color: white;
}

.software-content .btn-box4{
	display: flex;
	padding-top: 30px;
}
.btn-box4 a{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}

