.modal {
  justify-content:center;
  align-items:center;
  display: none;
  position: fixed;
  z-index: 9999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  user-select:none;
}

.modal-content {
  z-index:100;
  position: relative;
  background-color: #fefefe;
  margin:0 auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 6px;
  width: 96%;
  max-width: 680px;
  user-select:none;
  touch-action:none;
}

.close {
  position: absolute;
  right: 10px;
  top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  padding: 2px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: rgba(159, 159, 159, 0.2);
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.wrap {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.button_redirect {
  padding: 10px 14px;
  border: none;
  color: white;
  background-color: #502C1D;
  border-radius: 6px;
  font-size: clamp(16px, 1.4vw, 30px);
}

a:hover,
a:focus{
    color:white;
}

a {
  text-decoration: none;
  color:white;
}


@media screen and (min-width:600px) {
  .wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .button_redirect {
    flex: 1 1 200px;
  }
}


::-webkit-scrollbar {
  display: none;
}