body {
  background-color: slategrey;
}

.times-up {
  text-align: center;
  margin-top: 50px;
}

.title {
  font-size: 32px;
  margin-bottom: 20px;
}

.start-button-container {
  margin-top: 20px;
}

.btn {
  margin: auto;
  padding: 10px 20px;
  font-size: 20px;
  background-color: #4caf50;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.verde {
  background-color: #4caf50;
  color: #fff;
}

.azul {
  background-color: #2196f3;
  color: #fff;
}

.naranja {
  background-color: #ff9800;
  color: #fff;
}

.rojo {
  background-color: #f44336;
  color: #fff;
}

.word {
  font-size: 24px;
  margin-top: 30px;
}

.team {
  font-size: 20px;
  margin-top: 20px;
}

.timer-container {
  margin-top: 20px;
}

.timer {
  font-size: 24px;
}

.score-container {
  margin-top: 40px;
}

.score-container h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.score-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.score-container li {
  font-size: 16px;
  margin-bottom: 5px;
}

.current-team {
  font-weight: bold;
}


#ficha {
  margin-top: 20px;
  color: var(--colorFicha);
  height: 300px;
  width: 180px;
  background-color: rgb(198, 161, 58);
  border: 1px solid black;
  border-radius: 1em;
  margin: auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-evenly;
  align-items: center;
}

/* "navbar" */
.navbar {
  text-align: center;
}


/* Modal Content */
.modal {
  display: none;
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}