body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.wrapper {
    margin: 150px auto 0 auto;
    max-width: 600px;
}

.wrapper h1 {
    text-align: center;
    font-size: 36px;
}

.hide {
    display: none;
}

.start {
    text-align: center;
}

.scores {
    position: absolute; /* Use this and the line beolow to combine scores and timer in line 33 in a root element*/
    top: 10px;
    left: 10px;
}

.feedback {
    font-style: normal;
    font-size: 120%;
    margin-top: 20px;
    padding-top: 10px;
    color: aqua;
    border-top: 2px solid grey;
}

.timer {
    position: absolute;
    top: 10px;
    right: 10px;
}

a {
    color: black;
    text-decoration: none;
    transition: color 0.1s;
}

a:hover {
    color: #898994;
}

button {
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 100%;
    background-color: bisque;
    border-radius: 5px;
    padding: 2px 10px;
    color: black;
    border: 0;
    transition: background-color 0.1s;
}

button:hover {
    background-color: green;
    color: white;
}

.choices button {
    display: block;
}

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

ol {
    padding-left: 0px;
    max-height: 400px;
    overflow: auto;
}

li {
    padding: 5px;
    list-style-type: decimal inside none;
}

li:nth-child(odd) {
    background-color: aquamarine;
}

