*, *::before, *::after {
    box-sizing: border-box;
    font-family: Gotham Rounded;
  }
  
  :root {
    background-color: grey;
  }

.container {
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 50rem;
    margin: 50px auto;
    background-color: white;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 0 10px 2px;
}

h1{
    margin-top: -.5rem;
    color: #0597aa;
}

h2{
    margin-top: 2px;
    color: black;
    font-size: 20px;
    font-weight: lighter;
}

p{
  color: black;
  text-align: center;
}

li{
  padding-bottom: 3px;
  color: #0597aa;
  list-style-type: none;
}

input{
  text-align: center;
}

button {
    display: flex;
    align-items: center;
    background-color: #0597aa;
    border-radius: 10px;
    color: white;
    text-align: center;
    font-size: 20px;
    padding: 10px;
    width: 700px;
    margin-top: 10px;
    justify-content: center;
  }

#homePage{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#clock{
    font-family: sans-serif;
    background-color: grey;
    color: white;
    font-size: 19px;
    text-align: center;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#quizPage {
    display: none;
}

#results {
    display: none;
}


#scoreContainer{
  height: 100%;
  width: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgb(56, 9, 9)
}

#scorePage{
    display: none;
    width: 50%;
    border: solid;
    border-color: white;
    border-bottom-style: groove;
    padding-bottom: .3rem;
    background: rgb(233, 235, 238);
    align-items: center;
}

#highscoreTitle{
    display:flex;
    justify-content: space-around;
    margin-bottom: .5rem;
    background-color: #0597aa;
    font-family: sans-serif;
}

#highscore-name{
    display: inline-block;
    padding-left: 100px;
    font-weight: bold;
}

#highscore {
    float: right;
    padding-right: 75px;
    font-family: sans-serif;
    font-weight: bold;
}

#totalScore{
    height: 1.5rem;
    margin-bottom: 10px;
    padding-bottom: 0.5rem;
    font-size: x-large;
    font-family: sans-serif;
    font-weight: bold;
}

#gameOver {
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  color: black;
}

#name {
  margin: .5rem;
  height: 1.75rem;
}

#endGameBtns{
    display: flex;
    align-items: center;
    font-family: sans-serif;
    border-radius: 10px;
    border: 3px #cccccc;
    color: #eeeeee;
    text-align: center;
    font-size: 23px;
    padding: 30px;
    width: 700px;
}
