.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 {
  position: relative;
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
  border-radius: 10px;
  text-align: center;
}

.modal-content i {
  color: red;
  font-size: 3em;
  padding: 20px;
}

.modal-content p {
  color: black;
  margin: 10px;
}

.modal-content a {
  color: blue;
}

.modal-content button {
  display: inline-block;
  background-color: gray;
  color: black;
  padding: 10px 20px;
  margin: 20px auto;
  border: none;
  border-radius: 5px;
  cursor: pointer;
    border: 1px solid black;
}

.modal-content button:hover {
    background: white;
}


    .italic {
      font-style: italic;
    }

@media screen and (max-width: 600px) {
  .modal-content {
    width: 80%;
  }
}
