body {
  font-family: Arial;
  background: wheat;
  margin: 0;
  padding: 0;
}

header {
  background: black;
  color: white;
  text-align: center;
  padding: 1rem;
}

nav ul {
  background: #333;
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: white;
  text-decoration: underline;
  padding: 0.5rem;
}

nav ul li a:hover {
  background: yellow;
}

main {
  padding: 2rem;
}

form {
  max-width: 400px;
  margin: auto;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: o 2px 8px rgba(0,0,0,0.1);
}

form label {
  display: block;
  margin: 1rem 0 0.3rem;
}

form input, form button {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #d62828;
  color: white;
  border: none;
  cursor: pointer;
}

form button:hover {
  background: #a10d0d;
}

.footer {
  background-color: #222;
  color: #ccc
  text-align: center;
  padding: 2px 0;
}

.footer .social-icons {
  margin-bottom: 15px;
}

.footer .social-icons a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer .social-icons a:hover {
  transform: scale(1.2);
}

.footer .social-icons img {
  width: 30px;
  height: 30px;
}