body
    {
        height: auto;
        width: auto;
        background-color: rgb(0, 255, 128);
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-size: auto;
    }
h1{
      font-size: 50px;
    }
h3{
      font-size: 20px;
    }
.keys
    {
      height: 150px;
      width: 150px;
      border: 2px bold black;
      margin-right: 20px;
      transition: transform .5s ease;
    }
.image
    {
      height: 100px;
      width: 100px;
    }

.keys:hover
    {
      transform: scale(1.1);
    }
    
#reset_button
    {
      height: 35px;
      width: 70px;
      transition: transform .5s ease;
    }
#reset_button:hover
    {
      transform: scale(1.2);
    }