body {
	font-family: "Source Sans Pro", sans-serif;
	background-color: #1b1f22;
	color: #ffffff;
	margin: 0;
	padding: 0;
	position: relative; /* Add this to position the video overlay */
	overflow: hidden; /* Prevent scrollbars from appearing */
	z-index: 1;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

header {
	text-align: center;
	padding: 20px;
	background-color: #33333300;
}

header h1 {
	margin: 0;
	font-size: 2rem;
}

nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
}

nav ul li {
	margin: 0 10px;
}

nav ul li a {
	text-decoration: none;
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 5px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

main {
	padding: 20px;
	text-align: center;
	position: relative; /* Ensure main content is above the video */
	z-index: 2; /* Ensure main content is above the video */
	flex: 1;
}

footer {
	text-align: center;
	padding: 10px;
	background-color: #33333300;
	position: relative; /* Change from absolute to relative */
	width: 100%;
	bottom: 0;
	z-index: 2; /* Ensure footer is above the video */
	background: rgba(0, 0, 0, 0); /* Add a transparent background to the footer */
	color: #fff;
	padding: 1rem;
	text-align: center;
	left: 0;
	right: 0;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1; /* Ensure video is below the main content */
	opacity: 0.3; /* Adjust opacity as needed */
	pointer-events: none; /* Allow interactions with elements behind the video */
}

#bg-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.profile {
	display: flex;
	align-items: center;
	justify-content: center; /* Center the profile horizontally */
	margin-top: 20px;
}

.profile-picture {
	width: 500px; /* Increase the size of the image */
	height: 600px; /* Increase the size of the image */
	border-radius: 15px;
	overflow: hidden;
	margin-right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.profile-picture img {
	width: 100%;
	height: auto; /* Maintain aspect ratio */
}

.profile-info {
	max-width: 600px;
	text-align: left; /* Align text to the left */
}

.profile-info h3 {
	margin-top: 0;
}

.profile-info p {
	margin: 10px 0 0;
}

.profile-background {
	background-color: rgba(0, 0, 0, 0.7); /* Opaque background */
	padding: 20px;
	border-radius: 15px;
}

.home-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #464749;
	color: white;
	text-decoration: none;
	border-radius: 25px;
	text-align: center;
	margin-top: 20px; /* Add margin between the button and the header */
	border: 2px solid white; /* Add white border around the button */
}

.home-button:hover {
	background-color: #6b2372;
}
