/* The Modal (background) */
.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  display: none;
  /* Hidden by default */
}

/* Modal Content */
.modal-content {
  font-weight: 900;
  font-size: 90%;
  border-radius: 15px;
  background-color: #e6e6e6;
  margin: auto;
  padding: 20px;
  margin-top: 10%;
  border: 1px solid #888;
  width: 25%;
  height: 40%;
}

/* The Close Button */
.close_modal {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close_modal:hover,
.close_modal:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  /* Modal Content */
  .modal-content {
    font-weight: 900;
    font-size: 90%;
    border-radius: 15px;
    background-color: #e6e6e6;
    margin: auto;
    padding: 20px;
    margin-top: 20%;
    border: 1px solid #888;
    width: 50%;
    height: 30%;
  }
}

@media screen and (max-width: 500px) {
  /* Modal Content */
  .modal-content {
    font-weight: 900;
    font-size: 70%;
    border-radius: 15px;
    background-color: #e6e6e6;
    margin-top: 30%;
    border: 1px solid #888;
    width: 50%;
    height: 30%;
  }
}

@media screen and (max-width: 450px) {
  /* Modal Content */
  .modal-content {
    font-weight: 900;
    font-size: 70%;
    border-radius: 15px;
    background-color: #e6e6e6;
    margin-top: 35%;
    border: 1px solid #888;
    width: 50%;
    height: 20%;
  }
}