.modal {
  display: none;
  position: fixed;
  /* color: white; */
  font-family: 'Bebas Neue', sans-serif;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 80%;
}

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

.button-modal {
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
  background-color: #1d1d1d;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.button-modal:hover {
  background-color: #949494;
}
