/* Resets Browsers Defaults */
* {
    box-sizing: border-box;
}

/* Definitions */
:root {
    --primary: plum;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    color: var(--primary);
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

.timer {
    justify-content: flex-end;
}

/* Main Styling */
main {
    text-align: center;
    font-size: x-large;
}

#results,
#multiple-choice {
    display: none;
}

/* Button Styling */
.btn {
    color: aliceblue;
    background-color: var(--primary);
    border-radius: 15px;
}