body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffae1;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

h1 {
  text-align: center;
  color: #e4aa00;
}

h2 {
  color: #e4aa00;
  margin-top: 20px;
}

section {
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 5px;
}

/* Banana animation styles */
.bananas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.banana {
  position: absolute;
  width: 20px;
  height: 40px;
  background-color: #ffe135;
  border-radius: 60% 40% 40% 60%; 
  box-shadow: inset -5px 0 0 rgba(0, 0, 0, 0.1), 2px 2px 5px rgba(0, 0, 0, 0.2);
  animation: floatAndRotate 10s infinite linear;
  transform-origin: center;
}

/* More bananas, less repetition with a loop in JS later */
.banana:nth-child(1) {
  top: 5%;
  left: 5%;
  animation-delay: 0s;
}

.banana:nth-child(2) {
  top: 15%;
  left: 90%;
  animation-delay: 1s;
}

.banana:nth-child(3) {
  top: 25%;
  left: 10%;
  animation-delay: 2s;
}

.banana:nth-child(4) {
  top: 35%;
  left: 85%;
  animation-delay: 3s;
}

.banana:nth-child(5) {
  top: 45%;
  left: 20%;
  animation-delay: 4s;
}

.banana:nth-child(6) {
  top: 55%;
  left: 75%;
  animation-delay: 5s;
}

.banana:nth-child(7) {
  top: 65%;
  left: 30%;
  animation-delay: 6s;
}

.banana:nth-child(8) {
  top: 75%;
  left: 70%;
  animation-delay: 7s;
}

.banana:nth-child(9) {
  top: 85%;
  left: 40%;
  animation-delay: 8s;
}

.banana:nth-child(10) {
  top: 5%;
  left: 60%;
  animation-delay: 9s;
}

.banana:nth-child(11) {
  top: 10%;
  left: 35%;
  animation-delay: 10s;
}

.banana:nth-child(12) {
  top: 20%;
  left: 55%;
  animation-delay: 11s;
}

.banana:nth-child(13) {
  top: 30%;
  left: 95%;
  animation-delay: 12s;
}

.banana:nth-child(14) {
  top: 40%;
  left: 5%;
  animation-delay: 13s;
}

.banana:nth-child(15) {
  top: 50%;
  left: 45%;
  animation-delay: 14s;
}

.banana:nth-child(16) {
  top: 60%;
  left: 65%;
  animation-delay: 15s;
}

.banana:nth-child(17) {
  top: 70%;
  left: 25%;
  animation-delay: 16s;
}

.banana:nth-child(18) {
  top: 80%;
  left: 80%;
  animation-delay: 17s;
}

.banana:nth-child(19) {
  top: 90%;
  left: 15%;
  animation-delay: 18s;
}

.banana:nth-child(20) {
  top: 2%;
  left: 70%;
  animation-delay: 19s;
}

@keyframes floatAndRotate {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.8;
  }

  50% {
    transform: translate(20px, 10px) rotate(180deg);
    opacity: 0.6;
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
    opacity: 0.8;
  }
}