body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #555;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; /* Add this line */
  height: 100vh;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 2rem;
font-family: 'Bungee Shade', cursive;
  font-weight: bold;
  margin-bottom: 1rem;
  padding-top: 0;
  margin-top: 0;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
	line-height: 1.2;
	margin-top: 0;
	padding-top: 0;
}

.info-box {
  display: flex;
  justify-content: space-between;
  background-color: #eee;
  border-color: #555;
  border-width: 1px;
  border-radius: 1rem;
  padding: 1rem;
  width: 280px;
  margin: 2rem 0 2rem 0;
  font-weight: 100;
  position: relative;
}

.info-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.label-level {
  font-weight: bold;
  margin-bottom: 0.5rem;
  margin-left: 30px;
  padding: 0 10px;
}

.label-time {
  font-weight: bold;
  margin-bottom: 0.5rem;
  margin-right: 30px;
  padding: 0 10px;
}

#time-display {
  margin: 10px 50px 20px 0;
  font-size: 3em;
  padding: 0;
}

#level-display {
  margin: 10px 0 20px 50px;
  font-size: 3em;
  padding: 0;
}

#caption {
	padding-bottom: 0px;
}

.last-word {
  font-family: 'Rock Salt', cursive;
  font-size: 2.8rem;
  font-weight: bold;
  color: limegreen;
  margin-bottom: 1rem;
  padding:0 0 20px 0;
  margin: 0;
/*
  position: relative;
  top:-40px;
*/
  line-height: 0.8;
}

input[type="text"] {
  font-size: 1.5rem;
/*   border: none; */
  border: 1px solid gray;
  border-radius: 1.5rem;
  padding: 0.35rem;
  background-color: white;
  color: #555;
  text-align: center;
}

#message {
  margin-top: 1rem;
}


#restart-container {
  display: none;
  text-align: center;
  margin-top: 1em;
}

#restart-button {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5em; /* Increased from 1.2em to 2.4em */
  padding: 10px 20px; /* Increased from 10px 20px to 20px 40px */
  background-color: limegreen;
  color: white;
  border: 2px solid white; /* Added a white outline */
  border-radius: 5px;
  cursor: pointer;
}

