
#hero {
	width: 100%;
	height: 600px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 1rem;
}

.header-home {
	width: calc(100% - 2rem);
	padding: 1rem;
	height: 70px;
	background: none;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.hero-content {
	z-index: 10;
	text-align: left;
	padding: 10px;

	h1 {
		color: white;
		font-size: 2.5rem;
		margin-bottom: 0.5rem;
	}
	
	h2 {
		color: lightgrey;
		font-size: 1.25rem;
	}
}

nav {

	& > ul {
		list-style-type: none;
		justify-content: flex-end;
		align-items: center;
		gap: 10px;
	}
	
	a {
		text-decoration: none;
		font-size: 1.25rem;
		color: #C9CBCB;
		
		&:hover {
			color: white;
		}
	}
}