


body {
  font-family: 'Merienda', cursive;
  margin: 0;
  padding: 0;
}

#container-two {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

#order-header {
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
}

#cake-image {
  width: 80%;
  max-width: 400px;
  height: auto;
  margin-bottom: 10px;
}

.form-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  max-width: 600px;
}

.form-group {
  width: 48%;
  margin-bottom: 15px;
}

.form-group.full-width {
  width: 100%;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input, select, textarea, button {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  resize: vertical;
  height: 80px;
}

button {
  background-color: #f0ad4e;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #ec971f;
}
