.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  font-weight: 100;
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  width: 80%;
  max-width: 400px;
  font-size: 18px;
}

.modal-content p {
  margin-top: 20px;
  margin-bottom: 20px;
}

.close-btn2 {
  background: #651c32;
  color: white;
  border: none;
  padding: 10px;
  margin-top: 20px;
  cursor: pointer;
  width: 100%;
  font-size: 22px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.close-btn2:hover {
  background: #4a1425;
}

.modal-bg.show {
  display: flex;
}
