body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: white;
}

nav {
    padding: 2rem;
    position: absolute;
    z-index: 10;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #40E0D0; /* Your Turquoise Color */
    letter-spacing: 2px;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: brightness(50%); /* Makes text easier to read */
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #40E0D0;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 2rem;
}