body {
  margin: 0;
  font-family:  'Open Sans', Geneva, Verdana, sans-serif;
  font-weight:1000;
  background: linear-gradient(to bottom, #ffe8c4, #ffebcc);
  color: #333;
  text-align: center;
  letter-spacing: 0.01rem;
  padding: 20px;
}

.container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
}

.logo {
  max-width: 200px;
  margin: 20px auto;
  display: block;
}

h1 {
  font-family: 'Bebas Neue';
  font-size: 2em;
  margin-top: 5px;
  color: #bf5c0f;
  letter-spacing: normal;
}

.intro {
  font-size: 0,2em;
  margin: 30px 0;
  line-height: 0,5;
  letter-spacing: normal;
}

.start-button {
  display: inline-block;
  background-color: #fcd18b;
  color: #bf5c0f;
  padding: 15px 30px;
  font-family: 'Bebas Neue';
  letter-spacing: 0.05rem;
  font-size: 2em;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.start-button:hover {
  background-color: #000000;
}
.question {
  margin: 20px 0;
  text-align: left;
}

.options {
  margin-top: 5px;
}

.options input {
  margin: 0 5px;
}

.progress-container {
  height: 10px;
  background-color: #ccc;
  margin-top: 30px;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: #bf5c0f;
  transition: width 0.4s ease;
}

.legend {
  background-color: #f5d2a4;
  border-left: 5px solid #bf5c0f;
  padding: 10px 15px;
  margin-bottom: 25px;
  text-align: left;
  font-size: 0.95em;
  border-radius: 4px;
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.9em;
  color: #555;
  margin-top: 8px;
}

.options label {
  margin-right: 10px;
}
.trait {
  margin: 20px 0;
  text-align: left;
}

.trait label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

progress {
  width: 100%;
  height: 20px;
  border-radius: 10px;
  appearance: none;
}

progress::-webkit-progress-bar {
  background-color: #fcc79e;
  border-radius: 10px;
}

progress::-webkit-progress-value {
  background-color: #bf5c0f;
  border-radius: 10px;
}

a {
  color: #000000; /* Your chosen color */
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #bf5c0f; /* Darker on hover */
  text-decoration: underline;
}
