.modal {
  display: none; /* Hidden until triggered */
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 50%; /* width */
  height: 85%; /*  height */
  overflow: auto; /* scroll, if needed */
  background-color: #a22b30; /* bg color */
  
/* Modal Content */
.modal-content {
  background-color: #a22b30;
  margin: auto;
  padding: 10px;
  border: 20px solid #d3d3d3;
  width: 80%;
  text-transform: uppercase;
}
.modal-body {
  background-color: #a22b30;
  margin: auto;
  padding: 20px;
  border: 8px solid #d3d3d3;
  width: 80%;
  text-transform: uppercase;
  font-size: 10px;
  text-align: left;
  
}
.modal-footer {
  width: 100%;
  background: #a22b30;
  text-transform: uppercase;
  text-align: center;
}

/* The Close Button */
.close {
  background-color: #a22b30;
  color: #fff;
  float: right;
  font-weight: bold;
  font-size: 48px;
  text-align: center;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}