@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&display=swap');
body {
    padding: 0;
    margin: 0;
    font-family: 'PT Sans Narrow', sans-serif;
    background: url('./img/Fondo-2.jpg') center fixed;
    background-size: cover;
    transition: .3s;
}

.container {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.iniciar-quiz {
    width: 50%;
    height: 500px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    font-size: 20px;
}

.iniciar-quiz p {
    text-align: center;
}

.btn-iniciar-quiz {
    width: 30%;
    height: 50px;
    border-radius: 10px;
    border: none;
    background-color: #00b09d;
    color: #fff;
    transition: .5s;
    cursor: pointer;
    font-size: 16px;
}

.btn-iniciar-quiz:hover {
    background: #48565a;
}

.quiz-section {
    width: 50%;
    height: auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 1px 1px 20px 1px rgba(0, 0, 0, 0.4);
    margin: 100px;
    display: none;
}

.question {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 20px;
    padding: 10px;
}

.regresiveCounter {
    text-align: center;
    margin-bottom: 10px;
    font-size: 25px;
    color: green;
}

.answers {
    width: 100%;
    height: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.btn-answer {
    width: 80%;
    height: 82px;
    background: rgb(238, 237, 237);
    margin: 10px;
    line-height: 80px;
    transition: .5s;
    cursor: pointer;
    border: none;
    font-size: 12px;
    flex-wrap: wrap;
}

.btn-answer:hover {
    background-color: #f1c40f;
    width: 85%;
    font-size: 14px;
}

.counter {
    text-align: center;
    margin: 20px;
}

.final-section {
    width: 40%;
    height: 400px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 1px 1px 20px 1px rgba(0, 0, 0, 0.1);
    transform: translateY(50%);
    padding: 10px;
    text-align: center;
    font-size: 25px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.emoji {
    font-size: 50px;
    margin: 0px 0px 20px 0px;
}

.btn-volver-jugar {
    width: 200px;
    height: 70px;
    border-radius: 10px;
    border: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
}

.btn-volver-jugar:hover {
    background: #00617c;
    color: #fff;
}

@media (max-width: 1366px) {
    .quiz-section {
        width: 80%;
    }
    .question {
        font-size: 16px;
    }
    .btn-answer {
        font-size: 11px;
    }
}

@media (max-width:768px) {
    .quiz-section {
        width: 90%;
    }
    .final-section {
        width: 70%;
    }
    .iniciar-quiz {
        width: 80%;
    }
}

@media (max-width:400px) {
    .iniciar-quiz {
        font-size: 18px;
    }
    .btn-iniciar-quiz {
        font-size: 14px;
    }
}