body {
  background-color: black;
}

.container {
  background: url(./img/background.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 700px;
  height: 450px;
  margin: 0 auto;
  margin-top: 10vh;
  border-radius: 20px;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instruction {
  margin-bottom: 10px;
  border: solid 3px black;
}

.play-btn {
  margin-top: 20px;
  width: 50px;
  height: 50px;
  font-size: 25px;
  padding: 5px;
  background-color: yellow;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 300ms ease-in;
}

.play-btn:hover {
  transform: scale(1.2);
}

button:focus {
  outline: none;
}

.timer {
  background-color: white;
  padding: 2px 10px;
  visibility: hidden;
}

.result {
  background-color: coral;
  text-align: center;
  width: 40px;
  height: 40px;
  color: white;
  border-radius: 25px;
  visibility: hidden;
}

.field {
  width: 100%;
  height: 100%;
  position: relative;
}

.pop-up {
  width: 200px;
  height: 120px;
  text-align: center;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  margin: 0 auto;
  transform: translateY(-150%);
}

.pop-up.hide {
  display: none;
}

.replay {
  background-color: wheat;
}

.result-text {
  color: white;
  margin: 10px 0;
  font-size: 30px;
}

.field-items {
  position: absolute;
}

.carrot:hover,
.bug:hover {
  transform: scale(1.1);
}
