* {
    box-sizing: border-box;
}

@font-face {
  font-family: "Blogger Sans";
  src: url('fonts/BloggerSans.ttf');

}

@font-face {
  font-family: "Blogger Sans Bold";
  src: url('fonts/BloggerSans-Bold.ttf');

}

@font-face {
  font-family: "Blogger Sans Medium";
  src: url('fonts/BloggerSans-Medium.ttf');

}


body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Blogger Sans Medium', Arial, sans-serif;
    max-width: 100vw;
    overflow: hidden;
    background: #f6f6f7;
    font-weight: normal;

}

#quiz-start, #quiz-end {
    position: relative;
    display: block;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: url("bg-start.png") no-repeat;
    background-size: cover;
    left: 0;
}

#quiz-start.hidden, #quiz-info.hidden {
    left: -200vw;
}

#quiz-start img.logo, #quiz-container img.logo, #quiz-info img.logo, #quiz-end img.logo {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 50%;
}

#quiz-start .container, #quiz-end .container {
    position: relative;
    display: block;
    overflow: auto;
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    margin: 25px;
    text-align: center;
    padding: 10vh 0;
}

#quiz-container {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    transition: 0.33s all;
    background: linear-gradient(167.92deg, rgba(230, 231, 232, 0) -0.56%, rgba(0, 174, 239, 0.3) 99.71%);
}

#quiz-container .container {
    position: relative;
    display: block;
    overflow: auto;
    margin: 10px;
    text-align: center;
    padding: 5vh 0;
}

#quiz-container.hidden {
    left: -200vw;
}

#quiz-container .container #header img {
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 1600px;
}

#quiz-container h2#question {
    display: block;
    width: 100%;
    margin: 0 auto 25px auto;
    max-width: 1400px;
    background: #034f9c;
    border-radius: 100px;
    padding: 25px 100px 25px 144px;
    color: white;
    font-size: 40px;
    text-align: left;
    line-height: 1.3;
}

#quiz-container .container #options {
    display: block;
}

#quiz-container .container #options button {
    display: block;
    width: 100%;
    margin: 17px auto;
    max-width: 1200px;
    font-size: 30px;
    color: #034f9c;
    background: white;
    border: 2px solid #034f9c;
    border-radius: 50px;
    padding: 22px;
    text-align: left;
    padding-left: 42px;
    font-family: 'Blogger Sans Medium', Arial, sans-serif;

}

#quiz-container .container #options button.success {
    color: #1f9c03;
    border: 2px solid #1f9c03;
}

#quiz-container .container #options button.success:hover {
    background: #1f9c03;
    color: white;
}


#quiz-container .container #options button.error {
    color: #9c0303;
    border: 2px solid #9c0303;
}

#quiz-container .container #options button:hover {
    background: #034f9c;
    color: white;
}

#quiz-container .container #options button.error:hover {
    background: #9c0303;
    color: white;
}

#quiz-container p.error {
    color: #9c0303;
    font-weight: bold;
    font-size: 24px;
}

#quiz-container p.success {
    color: #1f9c03;
    font-weight: bold;
    font-size: 24px;
}

#quiz-info {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    overflow: hidden;
}

#quiz-info .container {
    position: relative;
    display: block;
    overflow: auto;
    margin: 25px;
    text-align: center;
    padding: 10vh 0;
    font-size: 42px;
    color: #1f9c03;
    font-weight: bold;
}

@media(max-width: 860px) {
    #quiz-container h2#question {
        display: block;
        width: 100%;
        margin: 15px auto;
        padding: 20px 5px;
        font-size: 28px;
    }

    #quiz-container .container #options button {
        max-width: 90%;
        font-size: 14px;
        border-radius: 15px;
        padding: 5px;
    }
}

#quiz-end {
    position: absolute !important;
    left: 0;
    width: 100vw;
    top: 0;
    height: 100vh;
}

#quiz-end .container img {
    max-width: 70%;
}

h1 {
    font-size: 100px;
    color: white;
}

button.large {
    font-size: 144px;
    padding: 50px 100px 25px 100px;
    color: white;
    background: transparent;
    border-radius: 200px;
    font-weight: bold;
    border: 2px solid #208ccd;
    box-shadow: 3px 3px 3px 3px rgba(51, 51, 51, 0.44);
    transition: 0.55s all;
    cursor: pointer;
    font-family: 'Blogger Sans Bold', Arial, sans-serif;
}

#quiz-end button.large {
    position: absolute;
    right: 80px;
    top: 52%;
    font-size: 48px;
    padding: 37px 80px 20px 80px;
}

button.large:hover {
    font-size: 124px;
    box-shadow: 3px 3px 3px 3px #208ccd;
}