html, body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    background-color: #353535; 
    overflow: hidden;
}

.connor {
    width: 30vw;
}

.L-fist{
    display: none;
    position: absolute;
    left: 20vw;
    width: 25vw;
    rotate: -20deg;
    bottom: -30px;
  }

.R-fist{
    display: none;
    position: absolute;
    left: 57.5vw;
    width: 25vw;
    rotate: 20deg;
    bottom: -30px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }

  .moving-image {
    position: absolute;
    width: 250px;
    height: 250px;
    /* background-color: aqua; */
    background-image: url('pixel_puppy.png');
    background-size: contain; 
    background-repeat: no-repeat;
}

#score {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 24px;
    font-family: Arial, sans-serif;
    color: rgb(255, 255, 255);
}