
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient( #0590af, #1f7741, #82449b);
  color: #fff;
  min-height: 100vh;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.5rem;
}

header h2 {
  font-weight: 400;
  font-size: 1.2em;
  margin-top: 10px;
}


.intro {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  max-width: 700px;
  width: 100%;
}

.intro ul {
  list-style: none;
  margin-bottom: 15px;
}

.intro li {
  margin-bottom: 10px;
}


main {
  max-width: 700px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 15px;
}

h3 {
  margin-bottom: 15px;
  font-size: 1.2em;
  font-weight: 600;
}

.botao1{
    background-color: #55e48c;
}

.botao2{
    background-color: #ca5c5c;
}


button {
  display: block;
  width: 100%;
  margin: 8px 0;
  padding: 12px;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.02);
}


button.correct {
  background-color: #38ef7d !important;
  color: black;
}

button.incorrect {
  background-color: #ff4d4d !important;
  color: white;
}

hr {
  margin: 25px 0;
  border: none;
  border-top: 1px solid rgba(14, 12, 12, 0.3);
}

#pontuacao-container {
  margin-top: 30px;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  width: 100%;
  max-width: 700px;
}
