.page {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
}

.btns {
    position: absolute;
    bottom: .6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: auto;
    z-index: 3;
    cursor: pointer;
}

.hand {
    position: absolute;
    bottom: 0.3rem;
    right: 0rem;
    width: 0.5rem;
    height: auto;
    z-index: 4;
    animation: handPulse 1.5s ease-in-out infinite;
}

@keyframes handPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}
