@font-face {
    font-family: "Quicksand";
    src: url("../css/Quicksand_Bold.otf");
}
@font-face {
    font-family: "Chaloops";
    src: url("../css/Chaloops-Medium.ttf");
}

body
{
    margin: 0;
}
.quiz-container
{
    background-image: url("../images/Banner/anime-style-clouds.jpg");
    background-size: 100% 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
}
.quiz-wrapper
{
    width: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pergunta
{
    margin: 12px 20px 0px;
    background-color: bisque;
    border-radius: 50px;
    border: 15px rgb(180, 130, 38) solid;
    height: 50vh; 
    max-height:200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pergunta span
{
    display: block;
    font-size: 36px;
    font-family: "Chaloops";
    max-width: 800px;
    text-align: center;
    margin: 0 20px;
}
.timer
{
    position: absolute;
    top: 15px;
    left: 20px;
    display: block;
    font-size: 36px;
    font-family: "Chaloops";
    border-radius: 50px;
    border: 15px rgb(180, 130, 38) solid;
    padding: 10px;
    background-color: bisque;
    width: 100px;
    text-align: center;
}
.secao-respostas
{
    margin: 20px 40px;
    display: flex;
    flex-direction: column;
}
.resposta
{
    display: flex;
    margin-top: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    transition: 0.2s;
}
.resposta:hover
{
    margin-top: 15px;
    margin-bottom: 15px;
    transition: 0.2s;
}
.alternativa
{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Quicksand";
    background-color: bisque;
    border: 5px rgb(180, 130, 38) solid;
    border-radius: 20px;
}
.alternativa:hover
{
    background-color: rgb(224, 183, 132);
    border: 5px rgb(73, 52, 12) solid;
    transition: 0.5s;
}
.texto-resposta
{
    height: 40px;
    flex-grow: 1;
    display: flex;
    font-family: "Quicksand";
    background-color: bisque;
    border: 5px rgb(180, 130, 38) solid;
    border-radius: 20px;
    flex: 1;
    flex-direction: row;
    align-items: center;
    margin: 0 0 0 5px;
    padding: 0 0 0 10px;
}
.texto-resposta:hover
{
    background-color: rgb(224, 183, 132);
    border: 5px rgb(73, 52, 12) solid;
    transition: 0.5s;
}
.final
{
    background-color: bisque;
    border-radius: 50px;
    border: 15px rgb(180, 130, 38) solid;
    padding: 20px;
    font-family: "Chaloops";
    margin: 0 20px;
}
.final p
{
    font-family: "Quicksand";
}
@media (max-width: 600px) {
    .pergunta
    {
        border-width: 10px;
    }
    .pergunta span
    {
        font-size: 24px;
    }
    .timer
    {
        padding: 0px;
        font-size: 24px;
        border-width: 5px;
    }
}