.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  display: flex;
  flex-direction: column;
  background-color: rgba(31, 46, 46, 0);
  margin: 0 auto;
  padding: 0;
  border-radius: 8px;
  width: 400px;
  height: 700px;
  font-family: 'Roboto', sans-serif;
}

.close-btn {
  display: block;
  text-align: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: #f1f1f1;
}

.modal-content h2 {
  display: block;
  text-align: center;
  margin-bottom: 20px;
   color: #f1f1f1;
}

.modal-content fieldset {
  border: none;
  outline: none;

  display: flex;
  /* arrange children in a row */
  justify-content: center;
  /* center horizontally */
  align-items: center;
  /* align vertically */
  gap: 15px;
  /* spacing between each option */
  flex-wrap: wrap;
   color: #f1f1f1;
  /* allow wrapping on small screens */
}

