
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body, html {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Transparent Navigation Menu */
.navbar {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
}

.navbar ul {
    list-style-type: none;
}

.navbar li {
    display: inline;
    margin-right: 20px;
}

.navbar a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.2); /* Transparent effect like the title */
    padding: 10px 20px;
    border-radius: 5px;
}

.navbar a:hover {
    color: #00bcd4;
}

/* Content */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

h1 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 4rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 40px;
    border-radius: 10px;
}

.email {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-top: 10px;
}

.contact-form {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: inline-block;
    width: 300px;
}

label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    text-align: left;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1rem;
}

button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* Success Message */
.success-message {
    color: rgba(0, 255, 0, 0.8);
    font-size: 1.5rem;
    margin-top: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 5px;
}
