/* body{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
} */

/* .button{
  background: #08298A;
  padding: 1em 2em;
  color: white;
  border: 0;
} */

/* .button:hover{
  background: #2E2EFE;
} */

.modal{
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  /* overflow: auto; */
  background-color: rgba(0, 0, 0, 0);
}

.modal-content{
  background-color: #f4f4f4;
  margin: 20% auto;
  /*padding: 20px; */
  width: 40%;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2),
              0 7px 20px 0 rgba(0, 0, 0, 0.17);
  animation-name: modalopen;
  animation-duration: 2s;
}

.modal-header{
  background: #223C57;
  padding: 15px;
  color: #fff;
}

.modal-body{
  padding: 10px 20px;
}

.modal-footer{
  background: #223C57;
  padding: 10px;
  color: #fff;
  text-align: center;
}

.closeBtn{
  color: #ccc;
  float: right;
  font-size: 30px;
}

.closeBtn:hover, .closeBtn:focus{
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

@keyframes modalopen{
  from{ opacity: 0}
  to{opacity: 1}
}
