/* Colors :
Purple - #9453A6
Green - #8CBF3F
Yellow - #F2CC0F
White - #F2F2F2
Black - #0D0D0D 
*/
@import url('https://fonts.googleapis.com/css2?family=Henny+Penny&family=Pattaya&family=Roboto:wght@300&display=swap');


body {
    background-image: url("./img/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}


.wrapper {
    width: 350px;
    margin: 0 auto;
    height: 100%;
    padding-top: 0px;
}

#quiz {
    background-color: #9453A6;
    padding-bottom: 60px;
    width: 100%;
    border-radius: 2%;
    color: #F2CC0F;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

#quiz>h1 {
    text-align: center;
    padding-top: 25px;
    font-size: 40px;
}

.questions {
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    border-top: 1px solid #0D0D0D;
    border-bottom: 1px solid #0D0D0D;
    padding: 20px;
}

.answers div {
    padding: 10px 0 0 0;
    font-size: 20px;
}

.answers div:hover {
    cursor: pointer;
    color: #0D0D0D;
}

.answers {
    padding: 0px 0 10px 0px;
}

.answers div {
    width: 50%;
    margin: 0 auto;
    padding-bottom: 15px;
    border-top: 1px solid #F2F2F2;
}

.answers div:first-child {
    border: none;
}

.checker {
    display: inline-block;
    width: 200px;
    margin: 0 auto;
}

.correct,
.false {
    background-color: #109D59;
    width: 60px;
    height: 30px;
    line-height: 30px;
    padding-left: 4px;
    float: left;
    margin-left: 2px;
    margin-top: 2px;
}

.false {
    background-color: red;
}