Move your mouse :)

HTML
SCSS
html, body { width: 100%; height: 100%; overflow: hidden; } body { background-color: orangered; font-family: 'Roboto Condensed', sans-serif; pointer-events: auto; &:hover { background-color: rebeccapurple; pointer-events: none; } &:before { content: 'move mouse'; position: absolute; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); font-size: 10vw; white-space: nowrap; color: white; pointer-events: none; } }
JAVASCRIPT
Expand for more options Login