body {
    font-family: Arial;
    font-size: 120%;
}

a {
    color: #563d7c;
    text-decoration: none;
    transition: color 0.1s;
}

a:hover {
    color: #8570a5;
}

button {
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    font-size: 100%;
    background-color: #563d7c;
    border-radius: 5px;
    padding: 2px 10px;
    color: white;
    border: 0;
    transition: background-color 0.1s;
}

button:hover {
    background-color: #8570a5;
}

.choices button {
    display: block;
}

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

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

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

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

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

.hide {
    display: none;
}

.show {
    display: block;
}

.result {
    display: block;
}


#questions p {
    background-color: #563d7c;
    color: white;
    padding: 15px 15px 15px 15px;
    border-radius: 5px;
}

#questions p:hover {
    background-color: rgb(182, 120, 241);
    box-shadow: 5px 5px 10px peru;
    scale: 1.01;
}

.start {
    text-align: center;
}

.scores {
    position: absolute;
    top: 10px;
    left: 10px;
}

.feedback {
    font-style: italic;
    font-size: 120%;
    margin-top: 20px;
    padding-top: 10px;
    color: gray;
    border-top: 2px solid #ccc;
}

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