/* Стили для модального окна */
.modal {
  display: none; /* По умолчанию скрыто */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Полупрозрачный фон */
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgb(255, 31, 31);
  width: 80%;
  text-align: center;
  font-size: 110%;
  display: grid;
  place-items: center;
  font-family: "Montserrat";
  max-width: 500px;
  min-height: 400px;
  position: relative;
}

/* Закрыть кнопка */
.close {
  color: rgb(255, 31, 31);
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 25px;
  top: 25px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
