body {
  background-color: #050505;
  color: white;
  font-family: Arial, sans-serif;
  padding: 40px;
}

h1 {
  color: red;
}
.assessment-section {
  padding: 80px 10%;
  background: #080808;
  color: white;
}

.assessment-section h2 {
  color: #ff1f1f;
  font-size: 42px;
}

#assessmentForm {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#assessmentForm input,
#assessmentForm textarea {
  padding: 14px;
  background: #111;
  color: white;
  border: 1px solid #333;
}

#assessmentForm button {
  padding: 14px;
  background: #ff1f1f;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
}