@keyframes horizontal-shaking {
    0% { transform: translateX(0) }
    25% { transform: translateX(5px) }
    50% { transform: translateX(-5px) }
    75% { transform: translateX(5px) }
    100% { transform: translateX(0px) }
    }

div #cl {
    position: absolute;
    width:30px;
    height: 30px;
    overflow: hidden;
    z-index:  1;
    font-size: 25px;
    text-align: center;
    }

body {
    background-color: black;
    color: white;
    font-family: 'fnaf';
    }