.modal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  overflow: none;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.modal_box {
  position: absolute;
  margin: 0 auto;
}

.modal_content {
  position: relative;
}

.modal_title {
  position: relative;
  width: 100%;
  text-align: right;
}

.close_button {
  color: white;
  font-weight: bold;
  font-size: 28px;
}
.close_button:hover {
  cursor: pointer;
  text-decoration: none;
}

