* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	color: #fff;
	overflow: hidden;
}

.video-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}

video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.content {
	position: relative;
	text-align: center;
	padding-top: 20%;
}

h1 {
	font-size: 4em;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

p {
	font-size: 1.5em;
	margin: 20px 0;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.button-container {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.fancy-button {
	padding: 15px 30px;
	font-size: 1.2em;
	color: #fff;
	background: linear-gradient(45deg, #ff0080, #ff8c00);
	border: none;
	border-radius: 5px;
	text-decoration: none;
	transition: transform 0.2s, background 0.2s;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.fancy-button:hover {
	transform: scale(1.1);
	background: linear-gradient(45deg, #ff8c00, #ff0080);
}

.glassy-button {
    padding: 15px 30px;
    font-size: 1.2em;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, border 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.glassy-button:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.7);
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo img {
    height: 50px; /* Adjust size as needed */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}
