.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
}

/* video jadi background */
.hero video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(90%);
}

/* content center perfect */
.hero-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: 2;

    width: 90%;
    max-width: 1000px;
}

/* logo */
.hero-content img {
    width: 60%;
    max-width: 60%;
    margin-bottom: 20px;
}

/* title */
.hero h1 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: white;
}

/* tambahan isi */
.hero-content p {
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
    font-size: 1.2rem;
    color: white;
}

/* button */
.btn {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #00bfff;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

.btnCek{
	width: auto;
	font-size: 2em;
	padding:20px 50px;
	color: #fff;
    background: transparent;
    border: 2px solid #fff;
}

/* responsive */
@media (max-width: 1000px) {
    .hero-content img {
        width: 60%;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}