/* The Modal (background) */
.modal2 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  text-align: center;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content2 {
  color: #fff;
  background-color: purple;
  border-radius: 20px;
  padding: 15px;
  width: 250px;
  height: 300px;
}

.modal-header2{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
#showScore {
  font-size: 40px;
}
.next-btn{
  color: purple;
  width: 60%;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  background: white;
  transition: all 0.3s ease;
}
.next-btn:active{
  opacity: 0.5;
}