body {
  background-image: url("./pink\ aura\ wallpaper.jpg");
  color: rgb(180, 95, 95);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  background-color: rgb(82, 82, 172);
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 24px 0;
  text-align: center;
  width: 100%;
}
header h1 {
  font-size: 50px;
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
nav {
  text-align: center;
  padding: 12px 0;
}
nav a {
  text-decoration: none;
  color: white;
  margin: 0 20px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.5px;
}
nav a:hover {
  color: #ff6347;
  text-decoration: underline;
}
main {
  flex: 1;
}
section {
  background-color: antiquewhite;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 900px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 24px;
  transition: box-shadow 0.3s ease;
}
ul {
  list-style: none;
  padding: 0;
}
ul li {
  margin: 12px 0;
  font-size: 20px;
}
ul button {
  color: white;
  background-color: rgb(182, 75, 93);
  font-size: 18px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border-radius: 30px;
}
ul button:hover {
  background-color: #0462c7;
}
ul button:active {
  background-color: #004085;
}
li {
  background-color: rgb(250, 231, 205);
  border: solid black 1px;
}
form {
  max-width: 650px;
  margin: 24px auto;
}
form label {
  margin-bottom: 8px;
  font-weight: 600;
  display: block;
}
form input,
form textarea,
form button {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
form input:focus form textarea {
  border-color: #007bff;
  outline: none;
}
form button {
  color: white;
  background-color: #007bff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
form button:hover {
  background-color: #0056b3;
}
form button:active {
  background-color: #004085;
}
footer {
  background-color: rgb(82, 82, 172);
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 24px 0;
  text-align: center;
  width: 100%;
}
