body {
  background: url("../img/BG.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: "Gabarito", sans-serif;
  margin: 20px;
}

.logo {
  text-align: end;
}

.logo img {
  width: 10%;
}

.conteudo-jogo {
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 5px #ff1b7b;
  margin: 30px;
  padding: 20px;
  height: 50vh;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.conteudo-jogo:hover {
  background: rgba(0, 0, 0, 0.568);
  box-shadow: 0 0 5px #19caca;
}

.titulo{
  background: rgba(0, 0, 0, 0.8);
}

h2, p {
  color: white;
}

.questionario {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  width: 70%;
  max-width: 70%;
}

.conteudo {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  gap: 20px;
}

.pergunta {
  font-weight: 600;
  color: white;
}

.imagem-pergunta {
  max-width: 13%;
  align-self: center;
  height: auto;
  margin-bottom: 10px;
}

.progresso {
  text-align: end;
  font-size: small;
  font-weight: 500;
  color: white;
}

.respostas {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.botao-resposta {
  width: 100%;
  height: 2.5rem;
  text-align: start;
  padding: 5px;
  border: none;
  cursor: pointer;
  background: #ff1b7b;
  color: white;
}

.botao-resposta:hover {
  background: #19caca;
  font-weight: 600;
}

.fim {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.fim span {
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
  color: white;
}

footer {
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px;
  position: relative;
  width: 100%;
  bottom: 0;
  margin-top: 70px;
  margin-left: -10px;
}