/* General */
body {
  font-family: Arial, sans-serif;
  background-color: #f1f1f1;
  text-align: center;
  padding: 20px;
}

.container {
  margin-top: 50px;
}

h1 {
  color: #4CAF50;
}

form {
  margin-top: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

input[type="text"], button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ddd;
}

button {
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

/* Animación de la ardilla */
#ardilla {
  width: 50px;
  height: 50px;
  background-color: brown;
  border-radius: 50%;
  position: absolute;
  left: -60px;
  bottom: 50px;
  animation: correr 3s linear infinite;
}

@keyframes correr {
  0% {
    left: -60px;
  }
  50% {
    left: 80%;
    bottom: 50px;
  }
  100% {
    left: -60px;
  }
}

#arbol {
  width: 100px;
  height: 200px;
  background-color: green;
  margin: 0 auto;
  position: relative;
}

.monedas {
  width: 30px;
  height: 30px;
  background-color: gold;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 35px;
}