body{
  text-align: center;
  background-color: #120561;
  overflow-x: hidden;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

#pai {
    width: 90%;
    height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    font-size: 2em;
    margin-top: 10px;
    color: beige;
}

#opcoes {
    display: flex;
    flex-flow: column nowrap;
}

#opcoes button {
    width:700px;
    height: 80px;
    font-size: 2em;
    margin:20px;
    border-radius: 15px;
    transition: 0.5s all ease;
}

#opcoes button:hover {
    height: 90px;
    border: 5px solid red;
}

p {
    font-size: 4em;
}

#contadorPerguntas {
    position: fixed;
    right: 0;
    bottom: 0;
    margin-right: 30px;
    font-size: 2em;
    color: aliceblue;
}