*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html,
body {
	height: 100%;
}
body {
	background-image: url("img/computer.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.hero {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1 2rem;
}
.logo {
	height: 150px;
}
.nav-bar ul {
	display: flex;
	gap: 60px;
	font-size: 1.5rem;
	font-weight: 600;
}
li {
	list-style-type: none;
}
a {
	text-decoration: none;
	color: #fff;
	font-weight: 800;
}
a:hover,
.box:hover {
	cursor: pointer;
}
li a:hover {
	color: #1877f2;
}
.information {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 400px;
	justify-content: center;
}
.box {
	background-color: #1877f2;
	padding: 5px 25px;
	border-radius: 10px;
}
.box:hover a {
	color: #000;
}
.hero-title {
	font-weight: 800;
	font-family: "Roboto Slab", serif;
	margin-bottom: 30px;
	font-size: 3.5rem;
	color: antiquewhite;
	text-shadow: 2px 3px 5px #1e90ff;
}
.hero-title:hover {
	color: #ffff00;
}
p {
	color: #fff;
	font-size: 17px;
	line-height: 2rem;
	text-shadow: 2px 3px 5px #000000;
	font-family: "Open Sans", sans-serif;
}
.cta {
	border-bottom: 2px solid #1877f2;
	font-size: 35px;
	margin-top: 10px;
	text-shadow: 2px 3px 5px #000000;
	font-family: "Roboto Slab", serif;
}
.cta:hover {
	color: #adff2f;
}
