* {
	box-sizing: border-box;
}

html{
	scroll-behavior: smooth;
}

header{

	position: sticky;
	top: 0;
	z-index: 1000;

}

nav{
	padding: 0px;
	display: flex;
	align-items: center;
	z-index: 1000;
	background: black;

	#navimage{
		width: 130px;
		height: 130px;
		margin-left: 10px;
		margin-right: 10px;
	}
	.links{
		display: flex;
		gap: 20%;
		margin-left: 3%;
	}
	a{
		color: white;
		font-size: 20px;
		text-decoration: none;
	}
}

body{
	background-color: black;
	margin: 0px;
	font-family: "Red Hat Display", sans-serif;
	h1{
		color: purple;
		font-size: 50px;
		text-align: center;
	}
	#subtitle{
		color: white;
		text-align: center;
		margin-left: 0%;
		padding-left: 10%;
		padding-right: 10%;
		font-size: 16px;
	}

	.bodycontent{		
		width: 85%;
		max-width: 1300px;
		margin: 0 auto;
		h2{
			font-size: 80px;
			color: white;
			margin-bottom: 10px;
			z-index: 2;
			margin-top: 100px;
		}
		p{
			color: white;
			padding: 5px;
			font-size: 16px;
		}
		footer{
			height: 100px;
			color: white;
			display: flex;
			align-items: center;
			z-index: 1000;
			background: black;
			margin-bottom: 20px;
			justify-content: space-between;
			box-shadow: 0px 0px 0px blueviolet;

			#copyright{
				font-size: 12px;
			}
			a{
				color: violet;
				font-size: 16px;
				text-decoration: none;
			}
		}
	}
}

@media(max-width: 768px){
	.subtitle{
		font-size: 20px;
	}
	p{
		font-size: 20px;
	}
}

.h-image{
	position: relative;
	width: 100%;
	height: 600px;
}

.h-image img{
	width: 100%;
	display: block;
	height: 600px;
	object-fit: cover;
}

.h-image::after{
	content: "";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 350px;

	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 1));
}