* {
  box-sizing: border-box;
}

body {
  background-color: #a0c1b8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  font-family: 'Comic Neue', cursive;
}



select {
  width: 100px;
  padding: 5px;
  margin-left: 10px;
  border-radius: 2px;
}

.settings {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  background-color: #709fb0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background-color: #726a95;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  color: #f4ebc1;
  position: relative;
  text-align: center;
  width: 500px;
}

h2 {
  background-color: rgba(0, 0, 0, 0.7);
  color: whitesmoke;
  padding: 8px;
  border-radius: 4px;
  margin: 0 0 40px;
}

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

input {
  border: 0;
  border-radius: 4px;
  font-size: 20px;
  width: 300px;
  padding: 12px 20px;
  margin-top: 10px;
}

.score-container {
  position: absolute;
  top: 80px;
  right: 20px;
}

.time-container {
  position: absolute;
  top: 80px;
  left: 20px;
}

.end-game-container {
  background-color: inherit;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

button {
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
  padding: 5px 15px;
}

button:hover {
  background-color: #8785a2;
  color: whitesmoke;
}

footer {
  text-align: center;
  position: absolute;
  bottom: 5%;
}