Welcome to my Website!!!

This is a paragraph! Here's how you make a HUMAN EXPERIENCE: FRIED NOODLES BY PINK GUY AKA FILTHY FRANK.

#gameCanvas { border: 1px solid black; } #block { position: absolute; width: 50px; height: 50px; background-color: blue; left: 0; top: 100px; animation: moveBlock 5s linear infinite; animation-play-state: running; animation-delay: calc(var(--speed) * 0.2s); } @keyframes moveBlock { 0% { transform: translateX(0); } 100% { transform: translateX(300px); } } input[type="range"] { display: block; margin-top: 10px; } input[type="range"]::-webkit-slider-runnable-track { background-color: #ccc; } input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 15px; height: 15px; background-color: blue; border-radius: 50%; cursor: pointer; } input[type="range"]:hover::-webkit-slider-runnable-track { background-color: #ddd; } input[type="range"]:focus { outline: none; } input[type="range"]:focus::-webkit-slider-runnable-track { background-color: #ccc; } input[type="range"]:focus::-webkit-slider-thumb { box-shadow: 0 0 0 1px #000; } input[type="range"]:disabled::-webkit-slider-runnable-track { background-color: #ccc; } input[type="range"]:disabled