body {
  background-color: #1e252a;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
}

  #plant-container {
    display: flex;
    flex-direction: column;
    height: 380px;
    justify-content: center;
  }
  
  #bud-container {
    position: relative;
    margin: auto;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #plant {
    position: relative;
    margin: auto;
    width: 200px;
    height: 200px;
    cursor: pointer;
    
  }

  .clicked {
    animation: bud 0.2s ease-out;
  }
  
  .purchased-item {
    position: absolute;
    animation: fall 2s linear;
  }
  
  @keyframes fall {
    0% {
      transform: translateY(-50px);
      opacity: 0;
    }
    100% {
      transform: translateY(100vh);
      opacity: 1;
    }
  }

  #buds {
    font-size: 30px;
  }
  
  #shop {
    margin: 1px auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

  }

  .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    margin: 10px;
    height: 260px;
    background-color: #272727;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-out;
    
  }

.item:hover {
  transform: scale(1.05);
}

.welcome {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  position: relative;
}


  
.item .name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .item .price {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .item .passive {
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
  }
  
  .item .passive:before {
    content: "+";
    color: green;
    position: absolute;
    left: -10px;
  }
  
  .item .passive:after {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(bud.png);
    background-size: cover;
    position: absolute;
    top: -5px;
    left: -20px;
  }
  
  .item img {
    width: 80px;
    margin: 10px;
  }
  
  .name {
    font-size: 16px;
    margin: 5px;
  }
  
  .price {
    font-size: 14px;
    margin: 5px;
  }
  
  .buy {
    margin: 5px;
    padding: 5px;
    background-color: #4CAF50;
    color: white;
    border: none
  }  



  #plant:hover .bud {
    opacity: 1;
  }
  
  #plant img {
    width: 100%;
    height: 100%;
  }
  
  #plant .bud {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background-image: url(bud.png);
    background-size: cover;
    opacity: 0;
    transition: opacity 0.2s ease-out;
  }
  
  .item button {
    background-color: #343a40;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease-out;
    transform: scale(1.05);
    }

    .item button:hover {
        background-color: #fff;
        color: #343a40;
        
    }

    #buds {
        font-size: 40px;
        font-weight: bold;
        
    }

    @keyframes bud {
        0% {
        transform: scale(0);
        }
        50% {
        transform: scale(1.2);
        }
        100% {
        transform: scale(1);
        }
    }



    .loading-screen {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 1;
      transition: opacity 1s ease-in-out;
    }
    
    .loading-screen::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      filter: blur(500px);
    }
    
    .bud {
      width: 100px;
      height: 100px;
      animation: rotate 1s linear infinite;
    }
    
    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
    
    .content {
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }
    
    .content.show {
      opacity: 1;
    }