html {
    background: #090a0f;
}

body {
    background-color: rgba(0, 0, 0, 0);
}

#settings {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 100%;
}

#settings div {
    border: 3px solid black;
    border-radius: 15px;
}

html {
    height: 100%;
}

body {
    position: relative;
    overflow-x: hidden;
    overflow-y: scroll;
}

#viewport {
    width:100%;
    box-sizing: border-box;
}

#viewport>* {
    box-sizing: border-box;
}


[m22-ripple] {
    position: relative;
}

[m22-ripple].m22-ripple_active {
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.m22-ripple {
    position: absolute;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    pointer-events: none;
    -webkit-animation: ripple-animation 2s;
    animation: ripple-animation 2s;
}

@-webkit-keyframes ripple-animation {
    from {
        transform: scale(1);
        opacity: 0.4;
    }

    to {
        transform: scale(100);
        opacity: 0;
    }
}

@keyframes ripple-animation {
    from {
        transform: scale(1);
        opacity: 0.4;
    }

    to {
        transform: scale(100);
        opacity: 0;
    }
}