body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: rgb(48, 110, 146);
}

.owl {
  position: fixed;
  /* bottom: 0px; */
  left: calc(50% - 50px);
  top: calc(50% - 77px);
}

.eyes {
  position: absolute;
  display: flex;
  bottom: 94px;
  right: 22px;
  gap: 8px;
}

.eye {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: #e09d32;
  border-radius: 50%;
  overflow: hidden;
}

.pupil {
  width: 5px;
  height: 5px;
  position: absolute;
  background-color: black;
  border-radius: 50%;
  border: 4px solid black;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* transform: translate(5px, 0); */
}
