.hero-img {
    max-width: 70%;
    height: auto;
    width: auto;
}

.description {
    text-align: center;
    max-width: 1000px;
    margin: 2rem auto;
}

body {
    text-align: center;
    font-size: 20px;
    background-image: url("public/buzz4.png");
    background-repeat: repeat;
    background-size: 150px;
    background-position: top left;
    margin: 2rem;
}

#questions-container {
    text-align: left;
}

li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .75rem;
    list-style: decimal;
    list-style-position: inside;
    margin:auto;
}

li label {
    cursor: pointer;
}

li::before {
    counter-increment: question-counter;
    content: counter(question-counter) ".";
    position: absolute;
    margin-left: -40px;
}

ol {
    counter-reset: question-counter;
    margin-left: 1rem;
    padding-left: 1.5rem;
}

.button {
    background-color: #aa975d;
    border-style: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

    transition: background-color 0.2s ease, transform 0.1s ease;
}

.button:hover {
    background-color: rgb(189,178,131);
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stingem-img {
    height: auto;
    max-width: 100%;
    max-height: 600px;
    display: block;
    margin: 2rem auto;
}

#score-display {
  font-size: 4rem;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: #aa975d;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

a {
    color: rgb(189,178,131);
    text-decoration: none;
    transition: color 0.2s easy;
}

a:hover {
    color: #aa975d;
}

@media (max-width: 850px) {
  .hero-img {
    max-width: 90%;
  }
}

