body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding-top: 50px;
  background: #f2f2f2;
}

h1 {
  margin-bottom: 30px;
}

.boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.box {
  width: 100px;
  height: 100px;
  border: 2px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: white;
  font-weight: bold;
}

.form input {
  padding: 8px;
  width: 200px;
}

.form button {
  padding: 8px 15px;
  margin-left: 10px;
  cursor: pointer;
}
