body {
	margin: 0;
	font-family: Arial, sans-serif;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	height: 70px;
	background: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
	font-size: 22px;
	font-weight: bold;
}

.navbar a {
	margin-left: 25px;
	text-decorated: none;
	color: #333;
	fonr-weight: 500;
}

.navbar a:hover {
	color: #ff6fa5;
}

.hero {
	height: 100vh;
	background-image: url("banner.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	color: white;
	text-align: center;

	padding-top: 70px;
	position: relative;
}

.hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.45);
}

.hero > * {
	position: relative;
	z-index: 1;
}
