
body {
    font-family: Arial, sans-serif;
    text-align: center;
  }
  
  .drag-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .item {
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Adjust size as needed */
    border: 1px solid #333;
    cursor: grab;
  }
  
  .dropzone {
    width: 150px;
    height: 150px;
    border: 2px dashed #333;
    display: inline-block;
    margin: 20px;
    padding: 10px;
    vertical-align: top;
  }
  .feedback {
  font-size: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.btn{
  float: left;
  
  margin-top: 210px;
}