body {
    font-family: Arial;
    color: #202020;

    box-sizing: border-box;
    margin: 0;
    height: 100%;
}

h1 {
    margin: 0;
    font-size: 45px;
}

/*Icons*/
.fas {
    margin-right: 10px;
}

/*Clickable*/
a {
    color: #e816a2;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover,
a:focus,
a:active {
    color: #e816a2;
}

button,
.back-button {
    display: inline-block;
    padding: 5px 15px;
    margin: 0.5em 0.5em 0 0.5em;
    border-radius: 4px;
    border-style: none;
    background-color: #e816a2;
    color: white;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

.back-button:hover,
.back-button:focus,
.back-button:active,
button:hover,
button:focus,
button:active {
    background-color: #e816a2;
    color: white;
}

.back-button {
    margin-left: 0;
}

nav {
    padding: 15px;
    border-bottom: 1px solid white;
}

main {
    width: 80%;
    margin: auto;
    height: 75%;
    box-sizing: border-box;
    padding: 20px 0;
}

#question {
    font-size: 1.4em;
}

#timer {
    border-bottom: 1px solid white;
    padding-bottom: 15px;
    font-size: 1.35em;
    font-weight: bold;
}

#time-remaining {
    color: #e816a2;
}

#options {
    list-style: none;
    padding-left: 0;
}

#options button {
    margin-left: 0;
}

.option-status {
    font-size: 1.35em;
    font-weight: bold;
}

#correct {
    color: green;
}

#wrong {
    color: red;
}

/*Score at end of game*/
#score-text {
    font-size: 1.2em;
}

#score {
    font-weight: bold;
    color: #e816a2;
}

/*Form to submit score*/
#submit-score {
    margin-bottom: 10px;
}

#submit-score label {
    display: block;
}

#initials {
    padding: 3px;
    font-size: 1em;
    border-radius: 4px;
    box-sizing: border-box;
}

.error {
    border: 1.5px solid red;
}

#error-message {
    color: red;
    margin-top: 5px;
}