body {
  background-color: #121212;
  color: #ffffff;
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
}

h1 {
  color: red;
}

.contact {
  margin-top: 32px;
  padding: 24px;
  background-color: #1e1e1e;
  border-radius: 8px;
}

.contact h2 {
  margin-top: 0;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  gap: 4px;
}

.contact input,
.contact textarea {
  padding: 8px 10px;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #2a2a2a;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: red;
}

.contact button {
  padding: 10px 16px;
  background-color: red;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.contact button:hover {
  background-color: #cc0000;
}

.comments {
  margin-top: 32px;
  padding: 24px;
  background-color: #1e1e1e;
  border-radius: 8px;
}

.comments h2 {
  margin-top: 0;
}
