body {
  text-align: center;
  font-family: sans-serif;
  background-color: #f7f7f7;
  margin-top: 40px;
}

.container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.box {
  width: 100px;
  height: 100px;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.box:hover {
  transform: scale(1.1);
}

#result {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}
