.game-area{
    background-color: rgb(204, 230, 114);
}

.fruit{
    background-color: blue;
    position: absolute;
    height: 10px;
    width: 10px;
}

.player{
    position: absolute;
    /* draggable: true; */
    background-color:blueviolet;
    height: 70px;
    width: 15px;
}

.control-button{
    font-size: 1em;
    color: blue;
}

.start-instruction {
    display:inline;
    color: red;
    margin-left: 20px;
    animation: blinker 1s linear infinite;
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }