/*background image SVGBackgrounds.com*/ 
body {
background-color: #330000;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 400'%3E%3Cdefs%3E%3CradialGradient id='a' cx='396' cy='281' r='514' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23D18'/%3E%3Cstop offset='1' stop-color='%23330000'/%3E%3C/radialGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='400' y1='148' x2='400' y2='333'%3E%3Cstop offset='0' stop-color='%23FA3' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23FA3' stop-opacity='0.5'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='800' height='400'/%3E%3Cg fill-opacity='0.4'%3E%3Ccircle fill='url(%23b)' cx='267.5' cy='61' r='300'/%3E%3Ccircle fill='url(%23b)' cx='532.5' cy='61' r='300'/%3E%3Ccircle fill='url(%23b)' cx='400' cy='30' r='300'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
    font-family: 'Sail', cursive;
    font-size: 140%;
}

/*timer and highscores display placement*/
.heading {
    display: flex;
    justify-content: flex-start;
    padding: 2%;

}

/*timer placement*/
.timer {
   margin-left: 80%;
   color: lawngreen;
}

/* all anchor tags*/
a {
color: lawngreen;
transition: color 0.1s;
}

/* mouse hover*/
a:hover {
    color:  whitesmoke;
}

/*button hover*/
button:hover {
    color: whitesmoke;
}

/*button display*/
button {
    display: inline-block;
    margin: 5px;
    cursor: progress;
    font-size: 100%;
    background-color: indigo;
    border-radius: 5px;
    padding: 2px 10px;
    color: lawngreen;
    border: 0;
    transition: background-color 0.1s;
}

/*quiz options buttons*/
.options button {
    display: block;
    margin-left: 40%;
}

/*input box*/
input[type="text"] {
    font-size: 100%;
}

/*order list display*/
ol {
    padding-left: 0px;
    max-height: 400px;
    overflow: auto;
}

/*list display*/
li {
    padding: 5px;
}
/*DIV wrapping the start screen content*/
.wrapper {
    margin: 5px auto 0 auto;
    max-width: 600px;
    text-align: left;
}  

/*enter button*/
#start-button {
    text-align: center;
    margin-left: 40%;
}

/* end screen display*/

.end-screen{
    text-align: center;
    max-width: 600px;
    margin: 100px auto 0 auto;
}

/*hide all HTML tags with the hide class*/
.hide {
    display: none;
}

/*text alignment*/
h1, h2, h3 {
    text-align: center;
}

/*text alignment*/
.score-header, rule-class {
    text-align: left;
}

/*text alignment*/
p {
    text-align: center;
}

/*feedback display*/
.feedback {
    font-size: 120%;
    margin-top: 20px;
    padding-top: 10px;
    color: #800000;
    text-align: center;
}


