body {
  font-family: sans-serif;
  text-align: center;
  padding: 20px;
  background-color: #f2f2f2;
  background-image: url("Home_bg.jpg");
  background-size: cover;
  color: #f2f2f2;
}

.box-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.drop-box {
  width: 120px;
  height: 120px;
  border: 2px dashed #aaa;
  padding: 5px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: background-color 0.3s;
}

.drop-box p {
  margin: 0 0 5px;
  font-weight: bold;
  color: black;
}

.drop-box.over {
  background-color: #e0f7fa;
}

.image-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.draggable {
  width: 100px;
  height: 100px;
  cursor: grab;
  border: 2px solid #ccc;
  border-radius: 8px;
}
button {
  padding: 10px 20px;
  margin: 5px;
  font-size: 20px;
  border: none;
  border-radius: 6px;
  background-color: #1976d2;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0d47a1;
}

