@font-face {
    font-family: apercu-black;
    src: url(../fonts/apercu_movistar_plus-black.otf);
}

@font-face {
    font-family: apercu-regular;
    src: url(../fonts/apercu_movistar_plus-regular.otf);
}

body{
    padding: 0;
    margin: 0;
    width: 2160px;
    height: 3840px;
    overflow: hidden;
    background-image: url("../images/div-gray.jpg");
    background-color: #3550b5;
}
.hide{
    display: none;
}
.standby-block {
    position: relative;
}
.standby-block p {
    position: absolute;
    top: 400px;
    text-align: center;
    width: 100%;
    color: #fff;
    font-size: 75px;
    font-family: apercu-black;
}
.infinite-fade {
    animation: fadeInOut 4s ease-in-out infinite;
    opacity: 0;
  }
  
  /* Definimos el keyframe */
  @keyframes fadeInOut {
    0%   { opacity: 0; }
    50%  { opacity: 1; }
    100% { opacity: 0; }
  }


.init-block.question-block .content {
    position: absolute;
    top: unset;
    max-width: 78%;
    width: 100%;
    bottom: 200px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}
.init-block .content p.txt-down {
    font-size: 70px;
    font-family: apercu-regular;
    color: #3752b7;
    margin-top: 350px;
    margin-bottom: 50px;
}
.init-block .content p.txt-upper {
    font-size: 70px;
    font-family: apercu-regular;
    color: #000;
}

.init-block .content p strong {
    font-family: apercu-black;
}


.question-block {
    width: 100vw;
    height: 100vh;
    background-image: url("../images/div-gray.jpg");
}
.end-block .content,
.result-block .content {
    top: 12%;
    width: 70%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.question-block .feedback,
.question-block .content {
    top: 12%;
    width: 72%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.end-block .content .question-image {
    max-width: 50%;
    display: block;
}
.question-block .feedback .question-image,
.question-block .content .question-image { 
    max-width: 100%;
}

.end-block .content h2,
.result-block .content h2,
.question-block .feedback .question-text,
.question-block .content .question-text {
    font-family: 'clarendon-text-pro';
    font-size: 82px;
    color: #ccddc9;
    text-align: left;
    margin-top: 200px;
    text-transform: uppercase;
    font-weight: 400;
}
.end-block .content h2,
.result-block .content h2 {
    font-size: 150px;
    line-height: 150px;
    margin-top: 50px;
    margin-bottom: 50px;
    font-weight: 400;
}
.end-block .content h2 {
    text-align: center;
}
.end-block .txt-results,
.question-block .feedback .txt-results,
.result-block .content .txt-results { 
    font-size: 68px;
    font-family: apercu-regular;
    color: #fff;
}
.end-block .content button {
    background-color: transparent;
    border: 0 none;
}
.question-block .content .answer {
    font-size: 72px;
    text-align: left;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 35px;
    padding: 80px;
} 
.question-block .content .answer.wrong {
    background-color: #da0143;
}
.question-block .content .answer.correct {
    background-color: #01da95;
}
.question-block .content .answer span {
    padding: 0 60px 0 0;
}

.question-block .questions-div{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.quizz{
    padding: 20px 30px;
    font-size: 20px;
    cursor: pointer;
    width: 200px;
    margin-bottom: 25px;
}

.question-image{
    width: 100%;
    height: auto;
    margin: 0 auto;
}


.question-block button{
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 26px;
    padding: 20px 0px;
    border: 1px solid white;
    border-radius: 15px;
}
.question-block .content button.btn{
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 26px;
    padding: 0px;
    border: 0 none;
    background-color: transparent;
}

.question-block button:hover{
    background-color: coral;
}

#result{
    display: flex;
    width: 100%;
    flex-direction: column;
}

#character-image{
    margin: 0 auto;
    max-width: 500px;
    height: auto;
}

.results{
    display: flex;
    width: 100%;
    flex-direction: column;
}
.special {
    font-style: italic;
    font-weight: 900;
    font-family: 'apercu-black';
}
.end-block .content h2 .special,
.result-block .content h2 .special,
.question-block .feedback .question-text .special,
.question-block .content .question-text .special {
    font-family: 'clarendon-text-pro';
}