.modalOpen {
  display: inline-block;
  margin: 0 auto;
  color: #fff;
  font-weight: bold;
  background-color: #00a5a0;
  box-shadow: 0 5px 0 #008480;
  text-align: center;
  text-decoration: none;
  width: 40px;
  height: 25px;
  line-height: 20px;
  border-radius: 40px;
  border: none;
}

.modalOpen:hover {
  box-shadow: none;
  transform: translateY(5px);
  cursor: pointer;
  }


.modal-btn {
  display: block;
  margin: 0 auto;
  color: #fff;
  font-weight: bold;
  background-color: #00a5a0;
  box-shadow: 0 5px 0 #008480;
  text-align: center;
  text-decoration: none;
  width: 100px;
  height: 30px;
  line-height: 15px;
  border-radius: 40px;
  border: none;
}

.modal-btn:hover {
  box-shadow: none;
  transform: translateY(5px);
  cursor: pointer;
  }


.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.7);
   .modal-box {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 720px;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    animation-name: modalopen;
    animation-duration: 1s;
   }
  }//.modal-box
}//.modal

