#board {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #f0f0f0;
}

@keyframes pop-in {
    from {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .post-it {
    position: absolute;
    width: 150px;
    height: 150px;
    padding: 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    animation: pop-in 0.3s;
    transform-origin: center;
    overflow: hidden;
}




.texture {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('paper.jpg'); /* Update with your image path */
    background-repeat: no-repeat;
}
