/* Style for the video container on home screen*/
#video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Place it behind other content */
}
/* Style for the video element */
video {
    object-fit: cover; /* Scale video to cover the entire container */
    width: 100%;
    height: 100%;
}

.btn {
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    background-color: black;
   border-radius: 0;
}
