/* Basic Page Styling */
body {
  font-family: 'Arial', sans-serif;
  background-color: #fef8f8;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  background-color: #ffb6c1;
  color: white;
  padding: 20px;
}

h1 {
  font-size: 2em;
  margin-bottom: 5px;
}

form {
  background-color: #fff;
  margin: 30px auto;
  padding: 20px;
  border-radius: 15px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

fieldset {
  border: 2px solid #ffb6c1;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 15px;
}

legend {
  font-weight: bold;
  color: #ff69b4;
}

label {
  display: inline-block;
  width: 150px;
}

input, select, textarea {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
}

button {
  background-color: #ff69b4;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  cursor: pointer;
  margin-right: 10px;
}

button:hover {
  background-color: #ff85c1;
}

/* Image and Media */
#icecream-img {
  display: block;
  margin: 20px auto;
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

#media {
  text-align: center;
  padding: 20px;
  background-color: #fff0f5;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: #ffb6c1;
  color: white;
}
