body, html {
  background-color: #121212;
  color: white;
}


nav ul li a {
  color: inherit;
  text-decoration: none;
}


.content {
  padding: 120px 2rem 2rem 2rem;
  max-width: 800px;
  margin: auto;
}


h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #FF0000;
}


p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}


form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


input, textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #1f1f1f;
  color: white;
  font-family: 'Times New Roman', serif;
}

input::placeholder, textarea::placeholder {
  color: #888;
}


button {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #FF0000;
  color: #121212;
  cursor: pointer;
  transition: background 0.3s;
}

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