/** @format */

/* .container1 {
    height: 150vh;
    width: 100%;
    background-image: url("sampul.jpg");
    background-size: cover;
    background-position: center 80%;
    background-repeat: no-repeat;

    position: relative;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    z-index: 1;
} */

.container1::before {
    content: "";
    position: absolute;
    inset: 0; /* Sama dengan top: 0; left: 0; right: 0; bottom: 0 */
    background-color: rgba(
        61,
        95,
        206,
        0.3
    ); /* biru (seperti blue-900) dengan 30% opacity */
    z-index: 0;
}

.container1 > * {
    position: relative;
    z-index: 1; /* pastikan konten di atas overlay */
}

.container2,
.container3,
.container4,
.container5,
.container6,
.container7,
.container8,
.container9 {
    height: max-content;
}

.container_text {
    text-align: center;
    /* background-color: red; */
}

#text1 {
    font-size: 17px;
}
#text2 {
    font-size: 68px;
    font-weight: bold;
}
.btn_jelajah {
    margin: auto;
    margin-top: 100px;
    border: 1px solid black;
}

video {
    margin: auto;
    margin-top: 30px;
    border-radius: 10px;
    width: 100%;
    position: relative;
    /* top: 100px; */
}

#penjelasan {
    margin-top: 20%;
}

.btn_jelajah {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
