body 
{
    font-family: 'Josefin Sans', sans-serif;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    align-items: center;
}


h1 {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 0;
}

#highscore-title {
    margin-bottom: 50px;
}

button a {
    text-decoration: none;
    color: #555;
    line-height: 25px;
}

button {
    text-align: center;
    background-color: tan;
    cursor: pointer; 
    border-radius: 5px;
    padding: 10px;
    color: white;
    min-width: auto;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

#question {
    font-family: sans-serif;
    font-size: 22px;
    margin-bottom: 30px;
    margin-top: 0px;
}

#answers {
    display: flex;
    flex-direction: column;
}

.button {
    width: 80px;
    height: 25px;
    text-align: center;
    background-color: #fff;
    margin: 0 2px 0 2px;
    cursor: pointer;
    margin: 0 auto;
    border-radius: 3px;
    padding: 5px;
    color: black;
    font-size: 22px;
}
.button a 
{
    text-decoration: none;
    color: #555;
    line-height: 25px;
}

.showScoresButton {
    display: none;
}


.hide {
    display: none;
}

#scores {
    flex-direction: row;
    justify-content: center;
    margin: 10px;
}


#mainContainer 
{
    width:50%;
    margin: 150px auto;
    padding: 50px 30px;
    background-color: #95ecbe;
    border-radius:3px;
    color: #000;
    box-shadow: 0 0 10px 0 #999;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 500px;
}

ul li {
    background: #3fb5a1;
    width: 200px;
    margin: 10px;
    padding: 5px;
    display: inline-block; 
}


a {
    color: black;
    text-decoration: none;
}