html,
body {
    margin: 0;
    height: 0;
    background: #fbfbfb;
    font-family: "Quattrocento", sans;
}
body {
    overflow-x: hidden;
}
/* video.css */
.outer-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Ensures that the video doesn't cause unwanted scrollbars */
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .video-container {
        width: 450%;
        height: 85%;
        margin-left: -175%;
    }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    .video-container {
        height: 80%;
        width: 520%;
        margin-left: -210%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1100px) {
    .video-container {
        height: 70%;
        width: 700%;
        margin-left: -300%;
    }
}

.homepage-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1; /* Ensure the content appears above the video */
}

.logo {
    width: 380px; /* Adjust the logo size as needed */
    height: auto;
}

.overlay-text {
    margin-top: 20px;
    font-size: 24px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Optional text shadow for better visibility */
}

/* For tablets (max-width: 768px) */
@media only screen and (max-width: 768px) {
    .logo {
        width: 380px; /* Adjust the logo size for tablets */
    }

    .overlay-text {
        font-size: 24px; /* Adjust the text size for tablets */
    }
}

/* For phones (max-width: 480px) */
@media only screen and (max-width: 480px) {
    .logo {
        width: 340px; /* Adjust the logo size for phones */
    }

    .overlay-text {
        font-size: 20px; /* Adjust the text size for phones */
    }
}

.sliding-div {
    width: 80%;
    height: 425px;
    background-color: #fff;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2); /* Shadow on the left and bottom */
    margin-left: auto; /* Push the div to the right */
    margin-right: 0;
    z-index: 1;
}
