body {
    background-image: repeating-linear-gradient(-45deg,
        #fc8eac 10px 30px,
        #f309d8 30px 50px,
        #EFF7F6 50px 70px,
        #F7D6E0 70px 90px,
        #F2B5D4 90px 110px
    );
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h1 {
    background: #FFC0CB;
    padding: 30px 0;
    margin: 50px auto 20px auto;
    width: 50%;
    border-radius: 10px;
    font-size: 50px;
    font-weight: bold;
}
h1 span {
    font-size: 30px;
    color: #777;
}
h2 {
    margin: 20px 50px;
}
#quiz {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
#question {
    background-color: #fff;
    border-radius: 10px;
    font-weight: bold;
    font-size: 30px;
    padding: 10px;
}
#choices li, #play-again {
    border: 3px solid #fff;
    background-image: repeating-linear-gradient(-45deg,
        #7BDFF2 10px 30px,
        #B2F7EF 30px 50px,
        #EFF7F6 50px 70px,
        #F7D6E0 70px 90px,
        #F2B5D4 90px 110px
    );
    box-shadow: 5px 5px 5px #DDA0DD;
    background-position: right center;
    transition: 0.5s;
    border-radius: 5px;
    margin: 10px;
    padding: 20px 5px;
    list-style: none;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    cursor: hand;
}
#play-again {
    background-image: repeating-linear-gradient(-45deg,
    #800000 10px 30px,
    #ffffff 30px 50px,
    #800000 50px 70px,
    #ffffff 70px 90px,
    #800000 90px 110px
    );
    display: block;
    margin: 10px auto 10px auto;
    width: 10em;
    color: #0f0;
}
#choices li:hover {
    background-position: 20% center;
    border: 3px solid #fc8eac;
    color: #ff00ff;
}
#result {
    font-weight: bold;
    font-size: 30px;
    text-align: center;
}
#score, #answers {
    background: #fff;
    border-radius: 10px;
    margin: 50px;
    padding: 10px;
}
#score {
    margin-bottom: 20px;
    font-size: 50px;
}
#answers {
    margin-top: 0;
    text-align: left;
}
#answers h2 {
    margin-left: 20px;
    font-size: 30px;
    font-weight: bold;
}
#answers li {
    margin: 10px 0 10px 50px;
    list-style: decimal;
    font-size: 20px;
    font-weight: normal;
}
img {
    margin: 10px;
    border: 3px solid #000;
    border-radius: 10px;
}
#choices li.correct {
    border-color: darkgreen;
}
#choices li.incorrect {
    border-color: crimson;
}
