/* Popup container - can be anything you want */
.cPopup {

    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* The actual popup */
  .cPopup .popuptext {
  visibility: hidden;
    width: 500px;
    height: 450px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    top: 80px;
    left: 50%;
    margin-left: -300px;
    border-size: 1px;
    border-color: #3299cc;
    border-style: solid;
    padding-right:50px;
    margin-top:100px;
  }
#contactPopup h1{
    color: #363636;
    font-size: 30px;
    font-weight: normal;
 }
 #contactPopup p{
    font-weight: normal;
 }
 #contactPopup h2{
    color: #363636;
    font-size: 24px;
    font-weight: normal;
 }
  /* Toggle this class - hide and show the popup */
  .cPopup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
  }
  
  /* Add animation (fade in the popup) */
  @-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
  }