  
* {
  font-family: Arial, Helvetica, sans-serif;
  max-width: 100%;
  background-color: white;
}

header {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
  }

#scoreDisplay {
  float: left;
  color: rgb(66, 6, 105);
}

#scoreDisplay:hover {
  background-color: #ddd;
  color: black;
}

#timerDisplay {
  color: rgb(66, 6, 105);
  float: right;
  }

#timerDisplay:hover
{
  background-color: #ddd;
  color: black;
}

button {
    background-color: rgb(66, 6, 105);
    color: white;
    width: auto;
    border-radius: 10px;
    height: 50px;
    font-size: larger;
}

.container {
  text-align: center;
  font-size: 60px;
  margin-top: 0px;
}