* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: white;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    padding: 20px 50px;

    position: absolute;
    width: 100%;
}

.navbar nav {
    display: flex;
    gap: 30px;
}

.navbar a {
    color: white;
    text-decoration: none;
}

.hero {
    position: relative;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    overflow:hidden;
}

.background-video {
    position:absolute;

    top:0;
    left:0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}

.hero::before {
    content: "";

    position: absolute;
    inset:0;

    background: rgba(0,0,0,0.5);

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.button {
    background: white;
    color: black;

    padding: 12px 24px;

    text-decoration: none;
    border-radius: 8px;
}
