.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh;
    z-index: 200;
    text-align: center;
    line-height: 100vh;
    
}

.splash.display-none {
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -10;
    transition: all 0.5s;
}

.splash img {
    width: 70px;
    animation: rotate 0.8s linear infinite; /* Terapkan animasi rotasi */
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
