html,
body {
    height: 100%;
}

body {
    color: #ffffff;
    font-family: "Quicksand", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    background-image: url(img/splash.png); /* ganti dengan path gambarmu */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
}

/* Footer */
.footer {
    margin-top: auto;
}

/* Mobile */
@media only screen and (max-width: 768px) {
    body {
        font-family: "Quicksand", sans-serif;
        /* background-color: #3e9195; */
        background-image: url(img/splash.webp); /* ganti dengan path gambarmu */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .judul {
        text-align: center;
        margin-top: 10em;
    }

    .judul h4 {
        font-size: 1.7em;
        margin-bottom: -0.2em;
    }

    .judul img {
        width: 50%;
    }

    .judul p {
        font-size: 0.9em;
    }

    .versi {
        margin-top: 0.9em;
        text-align: center;
    }

    .versi p {
        color: #ffffff;
    }

    .bgBawah {
        /* background-color: #337b7f; */
        height: 4em;
        position: fixed;
        bottom: 0;
        width: 100%;
    }
}
