
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url(image.png);
    background-repeat: no-repeat;
    background-size: 120%;
}


.quiz {
    background: floralwhite ;
    border: 6px solid red ;
    border-radius : 20px ;
    padding: 30px;
    width: 600px;
    max-width: 90%;
    text-align: center;
}
 h1 {
    color: black;
    margin-bottom: 10px ;

 }

 #score {

    margin-bottom: 20px;
    font-weight: bold;
    font-size: 18px;

 }

 #pergunta {
    margin: 25px 0;
    font-size: 22px;
    font-weight: bold;
 } 
 #opcoes {
    display: flex;
    flex-direction: column;
    gap: 12px;
 }

 #opcao {
    width: 100%;
    padding: 15px;
    border-radius: 10px; 
    border: none;
    background-color: blanchedalmond;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    text-align: left;
    transition: 0.2s;
 }
  .opacao:hover {
    transform: scale(1.02);

  }

  .certa {
    background-color: gold;
    color: rgb(255, 255, 255);
  }

  .errada {
    background: rgb(47, 0, 255); 
    color: rgb(255, 255, 255);
  }
  #proxima {
    margin-top: 20px;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 10px ;
    background: rebeccapurple;
    color: blue;
    cursor: pointer;
    font-size: 16px;
    display: none;
  }

