<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  font-family: Verdana, Geneva, Tahoma, sans-serif, sans-serif;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.container {
  background: rgba(0, 0, 0, 0.5) url("https://midias.agazeta.com.br/2024/09/02/bandeira-do-espirito-santo-2408853.jpeg");
  background-blend-mode: darken;
  background-size: cover;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: 20px;
}

h1 {
  font-size: 37px;
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  h1 {
      font-size: 24px; /* Ajuste para smartphones */
  }
}

p {
  font-size: 20px;
}

@media (max-width: 480px) {
  p {
      font-size: 16px; /* Ajuste para smartphones */
  }
 }

#input-municipio {
  width: 90%;
  padding: 10px;
  margin-top: 20px;
  font-size:30px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  text-align: center;
  color: #333;
  background-color: rgba(255, 255, 255, 0.9);
}

#input-municipio::placeholder {
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

#start-quiz {
  margin:auto;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#resultados {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-height: 200px;
  overflow-y: auto;
  text-align: left;
}

#resultados div {
  padding: 5px 0;
  width: 48%;
  border-bottom: 1px solid #ddd;
}

#status {
  margin-top: 20px;
  font-weight: bold;
}

#feedback {
  font-size: 25px;
  margin: 10px 0;
  color: #00ff00;
}

#retry-quiz { 
  margin: auto;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}</pre></body></html>