* {
  margin: 0;
  box-sizing: border-box;
}
#robot {
  position: absolute;
  left: calc(50% - 124px);
  top: 15%;
  transition: all 0.3s ease-in-out;
}

.shake {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

.blink {
  /* fill: aqua; */
  fill: none;
  animation: blink 1s step-start;
}
@keyframes blink {
  0% {
    fill: aqua !important;
  }
  100% {
    fill: red !important;
  }
}

#move-left,
#move-right,
#move-up,
#move-down {
  font-size: 40px;
  font-family: Verdana, sans-serif;
  background-color: blue;
  width: 70px;
  height: 70px;
  padding: 10px;
  border-radius: 17px;
  color: blanchedalmond;
  text-align: center;
  position: fixed;
  cursor: pointer;
}

#move-left {
  left: calc(50% - 140px);
  bottom: 20px;
}
#move-right {
  left: calc(50% + 70px);
  bottom: 20px;
}
#move-up {
  left: calc(50% - 35px);
  bottom: 120px;
}
#move-down {
  left: calc(50% - 35px);
  bottom: 20px;
}

#oven {
  position: absolute;
  top: 140px;
  left: 15%;
  z-index: -1;
}
