body {
  font-family: Arial, sans-serif;
  background-color: #f7f6c5;
  color: #4d4d4d;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  background-color: #ffcc80;
  padding: 20px;
}

header h1 {
  font-size: 2.5em;
  color: #bf360c;
}

main {
  margin: 20px auto;
  max-width: 600px;
}

section {
  background: #fff;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* Walking monkey container */
#walking-monkey {
  position: fixed;
  bottom: 20px; /* Position above the bottom of the screen */
  right: -100px; /* Start off-screen on the right */
  font-size: 3rem; /* Adjust size of the emoji */
  z-index: 1000; /* Keep it above other elements */
  display: flex; /* Keep the monkey and bananas in a line */
  align-items: center; /* Center the emojis vertically */
  animation: walk 10s linear infinite; /* Infinite walk animation */
}

/* Banana trail style */
#walking-monkey .trail {
  margin-right: 10px; /* Space between bananas and the monkey */
  animation: fade 2s linear infinite; /* Bananas fade in and out */
}

/* Animation for the monkey walking */
@keyframes walk {
  from {
    transform: translateX(120vw); /* Start off-screen on the right */
  }
  to {
    transform: translateX(-100vw); /* Move off-screen to the left */
  }
}

/* Animation for bananas fading in and out */
@keyframes fade {
  0%, 100% {
    opacity: 0; /* Bananas disappear */
  }
  50% {
    opacity: 1; /* Bananas fully visible */
  }
}


footer {
  margin-top: 20px;
  padding: 10px;
  background-color: #4caf50;
  color: white;
}
