 @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic);

 body {
      /* font-family: "Open Sans";
     line-height: 200%; */
     /* background: #7b78ff;  */
      
 }

 #subscribe {
     /* background: #7b78ff; */
     background: hotpink ;
     padding: 15px 30px 15px 30px;
     margin: 10px;
     border: none;
     cursor: pointer;
     border-radius: 10px;
 }

 input {
     width: 100%;
     height: 55px;
     background-color: #eee;
     border: none;
     padding-left: 15px;
     outline: none;
     font-weight: 600;
     position: relative;
     border-radius: 10px;
 }

 .container {
     width: 800px;
     margin: 10px auto;
     text-align: center;

    
 }



 .button {
     margin-top: 30px;
     padding: 2.2% 5.5%;
     display: inline-block;
     -webkit-transition: all linear 0.15s;
     transition: all linear 0.15s;
     border-radius: 3px;
     background: #fff;
     font-size: 22px;
     font-weight: bold;
     text-decoration: none;
     text-transform: uppercase;
     color: #333;
 }

 .button:hover {
     opacity: 1.75;
 }

 .wrapper {
     width: 100%;
     height: 100%;
     display: none;
     position: absolute;
     top: 0px;
     left: 0px;
     content: "";
     background: rgba(0, 0, 0, 1);
    /* background: #7b78ff; */

 }

 .popup-box {
     width: 400px;
     padding: 70px;
     transform: translate(-50%, -50%) scale(.5);
     position: absolute;
     top: 50%;
     left: 50%;
     box-shadow: 0px 2px 16px rgba(255, 255, 255, .9);
     border-radius: 20px;
     text-align: center;
    z-index: 9999;
        /* High z-index to ensure it's on top */
        /* ... other styles ... */

 }

 .popup-box h2 {
     color: white;
 }

 .popup-box h3 {
     color: #888;
 }

 .popup-box .close-button {
     width: 35px;
     height: 35px;
     display: inline-block;
     position: absolute;
     top: 10px;
     right: 10px;
     -webkit-transition: all ease 0.5s;
     transition: all ease 0.5s;
     border-radius: 1000px;
     /* background: #7b78ff; */
     background: hotpink;
     font-weight: bold;
     text-decoration: none;
     color: #fff;
     line-height: 190%;
 }

 .popup-box .close-button:hover {
     -webkit-transform: rotate(180deg);
     transform: rotate(180deg);
 }

 .transform-in,
 .transform-out {
     display: block;
     -webkit-transition: all ease 0.5s;
     transition: all ease 0.5s;
 }

 .transform-in {
     -webkit-transform: translate(-50%, -50%) scale(1);
     transform: translate(-50%, -50%) scale(1);
     background-color: #00796bd8;
   /* background-image: url("img/0.jpg"); */

 }

 .transform-out {
     -webkit-transform: translate(-50%, -50%) scale(0.5);
     transform: translate(-50%, -50%) scale(0.5);
 }