
body {
  margin: 0;
  overflow: hidden;
  background-color: #000;
}

canvas {
  display: block;
}

.apple-button {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 120px;
    height: 120px;
    font-size: 50px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.apple-button:hover {
    background-color: #2e7d32;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.apple-button:active {
    transform: translateY(1px) scale(0.98);
}


#leaves-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

.leaf {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
  will-change: transform;
}

.plant-animate-btn{
    position: fixed;
    top: 20px;
    left: 150px;
    width: 120px;
    height: 120px;
    font-size: 50px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.plant-animate-btn:hover {
    background-color: #2e7d32;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.plant-animate-btn:active {
    transform: translateY(1px) scale(0.98);
}

