body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar {
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-overlay h1 {
    color: white;
    font-size: 4em;
    text-align: center;
}
.text-overlay {
    position: absolute;
    bottom: 10px;
    left: 20px;
    color: white;
    font-size: 1em;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}
.image-container {
    position: relative;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.custom-hr {
    width: 100px;
    height: auto;
    margin: 25px; 
    border: none; 
}
