@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.banner_code .showcase {
    width: 100%;
    min-height: 100vh;
    position: relative;
    top:0;
    right: 0;
    display: flex;
    padding: 40px; /* Decreased padding for smaller screens */
    justify-content: center; /* Center content for smaller screens */
    align-items: center;
    background-color: black;
    color: aliceblue;
    z-index: 2;
}

.banner_code .showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.banner_code .showcase .overlay_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(254, 115, 1, 0.645);
    mix-blend-mode: overlay;
}

.text_main {
    position: relative;
    z-index: 10;
    text-align: center; /* Center text for smaller screens */
}

.text_main_sub {
    font-size: 4rem; /* Adjusted font size for smaller screens */
    color: rgba(240, 248, 255, 0.674);
}

.text_main h6 {
    font-size: 1.5rem; /* Adjusted font size for smaller screens */
    color: rgb(255, 255, 255);
    position: relative;
    left: 10px;
}

.text_main p {
    font-size: 15px;
    padding: 10px; /* Adjusted padding for smaller screens */
}

.button_blockcode {
    width: 100%;
    display: flex;
    justify-content: center; /* Center button for smaller screens */
    align-items: center; /* Center button for smaller screens */
    position: relative;
    right: 0; /* Adjusted position for smaller screens */
    top: 20px; /* Adjusted position for smaller screens */
}

.button_getstarted {
    width: 20%; /* Adjusted width for smaller screens */
    height: 30px;
    background-color: yellow;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Media Query for smaller screens */
@media screen and (max-width: 768px) {
    .banner_code .showcase {
        padding: 20px; /* Further decreased padding for smaller screens */
    }

    .text_main_sub {
        font-size: 2rem; /* Further adjusted font size for smaller screens */
    }

    .text_main h6 {
        font-size: 1.2rem; /* Further adjusted font size for smaller screens */
    }

    .button_blockcode {
        top: 10px; /* Further adjusted position for smaller screens */
    }
}
