.modal-open-button {
  padding: 16px 6px;
  color:#111;
  text-decoration: none;
  cursor: pointer;
  background-color: #f8f8f8;
  border: none;
  border-radius: 5px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
  opacity: 0;
  transition: opacity 0.5s, scale 0s 0.5s;
  scale: 0;
}

.modal:target {
  opacity: 1;
  transition: opacity 0.5s;
  scale: 1;
}

.close {
  position: absolute;
  top: 33px;
  right: 20px;
  font-size: 2em;
  color: #222;
  font-weight:600;
  text-decoration: none;
  cursor: pointer;
  transform: translate(50%, -50%);
}

.modal-wrapper {
  position: relative;
  width: 70%;
  max-width: 600px;
  max-height: 80%;
  padding: 20px;
  margin: auto;
  overflow: scroll;
  background-color: #FEFEFE;
  border-radius: 5px;
}

.modal-content h1 {
  margin: 0;
  margin-top:100px;
  font-size: 1.5rem;
  line-height: 1.2em;
  letter-spacing: 2px;
}

.modal-wrapper p{
  text-align:left;
  line-height:1.4;
}







