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

.land_cover {
    width: 100%;
    min-height: 100vh;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; 
}

.bg-video {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire background */
    object-position: center; /* Center the video */
    z-index: -1; /* Place the video behind other content */
}

nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo {
    width: 130px;
    margin: auto;
    transform: scale(0.55);
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}

nav ul li a {
    text-decoration: none;
    color: #1E1855;
    font-size: 24px;
    border: 2px solid #CE2129;
    padding: 1px 12px;
    border-radius: 40px;
}

.content {
    text-align: center;
    z-index: 1; 
    position: relative;
}

.content h1 {
    font-size: 45px;
    color: #fff;
    font-weight: 600;
    transition: 0.5s;
    position: relative;
    margin-top: 160px;
}

.content h1:hover {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}

.content a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    border: 2px solid #CE2129;
    padding: 5px 10px;
    border-radius: 50px;
    margin-top: 100px;
    position: relative;
}

.content a:hover {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}



@media (max-width: 768px) {
    .bg-video {
        object-fit: cover; 
    }
}

