body {
    font-family: 'Tillana', cursive;
    background-image: url(Images/avatar.jpg);
}

main {
    margin-top: 10vh;
}

#timer {
    background-color: #ffffe6;
    padding: 5px;
}

.col-8, .col-2 {
    display: flex;
    justify-content: center;
}


#user-stats {
    display: flex;
    flex-direction: column;
}

.input-group {
    padding: 10px;
}

label {
    padding: 10px;
}

#main-content {
    background-color: #ffffe6;
    padding: 20px;
    margin-top: 20vh;
}


#highscores {
    background-color: #ffffe6;
    border: none;
}

#highscores:hover {
    background-color: #800000;
    color: white;
}

#start {
    background-color: #800000;
    border: none;
    color: #ffffe6;
}

#submit {
    background-color: #800000;
    border: none;
    color: #ffffe6;
}

#start:hover, #submit:hover {
  background-color: black;  
}

#choices {
    list-style-type: none;
}

li {
    height: 50px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
    background-color:#800000;
    color: #ffffe6;
    font-size: 1.5em;
    line-height: 1.5;
  }

  li:hover {
      background-color: black;
      color:white;
  }