html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

.falling-shape {
    pointer-events: none;
    position: fixed;
    z-index: 999999;
    animation: rotate 3s infinite linear;
    max-width: 25px;
    max-height: 25px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
