@font-face {
    font-family: 'Hurme';
    src: url(font/HurmeGeometricSans2.otf);
}

:root {
    --pergunta-color: #2F2F2F;
    --resposta-corr: #46D472;
    --numero-questao: #47BFD7;
    --laranja: #F97F2C;
    --laranja-opc: #f97f2c99;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url(img/bg.png) no-repeat center;
    background-size: cover;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    font-family: 'Hurme';
}

.header {
    display: flex;
    height: 205px;
    width: 100vw;
    margin-top: 0;
    background-color: #fff;
}


.pergunta {
    height: 100%;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.pergunta img {
    margin-top: 55px;
    width: 200px;
}

.pergunta p {
    font-size: 50px;
    font-style: italic;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--pergunta-color);
}

.cronometro {
    height: 90%;
    width: 15%;
    margin-top: 10px;
    border-left: 2px solid #BABABA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tempo {
    position: absolute;
    font-size: 70px;
    font-weight: bold;
    color: var(--laranja);
}

.box {
    height: 70%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    padding-top: 55px;
    padding-bottom: 55px;
}

.respostas {
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
    width: calc(100% - 150px);
    height: fit-content;
    background: #fff;
    border-radius: 20px;
}

.respostas-correta {
    display: flex;
    align-items: center;
    width: calc(100% - 150px);
    height: fit-content;
    background-color: var(--resposta-corr);
    border-radius: 20px;
}

.respostas-correta .n-q {
    background-color: #fff;
    color: var(--resposta-corr);
}

.n-q {
    height: 80px;
    width: 80px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 50px;
    margin-left: 20px;
    font-weight: bold;
    color: #fff;
    background-color: var(--numero-questao);
}

.respostas-correta p {
    margin-left: 20px;
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
}

.respostas p {
    margin-left: 20px;
    color: var(--pergunta-color);
    font-size: 60px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
}


/* ################################################################ */

@-webkit-keyframes hvr-bob {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }

    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes hvr-bob {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }

    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@-webkit-keyframes hvr-bob-float {
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes hvr-bob-float {
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

.hvr-bob {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-bob {
    -webkit-animation-name: hvr-bob-float, hvr-bob;
    animation-name: hvr-bob-float, hvr-bob;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}


.circle__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
}

.circle__spinner {
    outline: 3px solid var(--laranja-opc);
    outline-offset: -20px;
    border-radius: 50%;
    width: 200px;
    height: 200px;
}

.circle__spinner .path {
    stroke: var(--laranja);
    stroke-linecap: round;
    animation: dash 15s linear;
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dasharray: 130, 150;
        stroke-dashoffset: 0;
    }
}

@media(max-width:720px) {
    body {
        background: url(img/bg-vertical.png);
        background-size: cover;
    }

    .pergunta {
        align-items: center;
        width: 100%;
    }

    .pergunta p {
        font-size: 40px;
    }

    .pergunta img {
        margin: 0;
    }

    .box {
        position: fixed;
        bottom: 100px;
    }

    .cronometro {
        position: absolute;
        right: 0;
        bottom: 0;
        height: 200px;
        width: 200px;
        border: 0;
    }

    .circle__spinner .path {
        stroke: #fff;
    }

    .circle__spinner {
        outline: 3px solid #fff;
    }

    .tempo {
        color: #fff;
    }

}

@media(width:1080px) {
    body {
        background: url(img/bg-vertical.png);
        background-size: cover;
    }

    .pergunta {
        align-items: center;
        width: 100%;
    }

    .pergunta img {
        margin: 0;
    }

    .box {
        height: 50%;
        position: fixed;
        bottom: 400px;
    }

    .cronometro {
        position: absolute;
        right: 0;
        bottom: 0;
        height: 200px;
        width: 200px;
        border: 0;
    }

    .circle__spinner .path {
        stroke: #fff;
    }

    .circle__spinner {
        outline: 3px solid #fff;
    }

    .tempo {
        color: #fff;
    }
}

@media(width: 540px) {
    .header {
        height: 105px;
    }
    .pergunta img {
        margin-top: 25px;
        width: 100px;
    }

    .pergunta p {
        font-size: 35px;
    }

    .circle__spinner {
        width: 100px;
        height: 100px;
    }

    .tempo {
        font-size: 40px;
    }

    .n-q {
        height: 40px;
        width: 40px;
        font-size: 32px;
    }

    .respostas p {
        font-size: 40px;
    }

    .respostas-correta p {
        font-size: 40px;
    }
}

@media(width: 960px) {
    .header {
        height: 105px;
    }
    .pergunta img {
        margin-top: 25px;
        width: 100px;
    }

    .pergunta p {
        font-size: 35px;
    }

    .circle__spinner {
        width: 100px;
        height: 100px;
    }

    .tempo {
        font-size: 40px;
    }

    .n-q {
        height: 40px;
        width: 40px;
        font-size: 22px;
    }

    .respostas p {
        font-size: 40px;
    }

    .respostas-correta p {
        font-size: 32px;
    }
}