* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: url("./blue-geo.png");
  background-size: cover;
  -webkit-background-size: cover;
  background-attachment: fixed;
  background-repeat: repeat repeat;
  background-position: center center;
}

.main-container {
  width: 550px;
  margin: 0 auto;
  background-color: #2e3134;
  border-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.headline {
  text-align: center;
  margin-top: 5px;
  padding-bottom: 10px;
  padding-top: 20px;
  border-color: rgb(65, 71, 76);
  outline: none;
  line-height: 1.22857143;
  background-color: rgb(30, 33, 36);
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: #41474c;
  border-width: 5px;
  border-style: solid;
  border-top: none;
  border-left: none;
  border-right: none;
  color: #fd7f02;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 42px;
  
}

.christopher {
  text-align: center;
  margin-top: 1%;
  padding-bottom: 10px;
  padding-top: 20px;
  font-family: sans-serif;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  word-wrap: break-word;
}

.main-content {
  margin: 0px -15px;
  padding: 10px 35px;
  padding-bottom: 5px;
}
.main-content p {
  font-family: Arial,Helvetica,sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  word-wrap: break-word;
}
.main-content p .check {
  color: #fd7f02;;
  padding: 0 5px;
  font-weight: 800;
}

.opt-in-section {
  text-align: center;
  padding: 0 25px;
}
.opt-in-section h3 {
  font-family: sans-serif;
  font-size: 18px;
  color: #fd7f02;
  
  margin-bottom: 5px;
  margin-top: -20px;
}
.opt-in-section h5 {
  color: rgba(255, 255, 255, 0.47);
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 400;
  visibility: hidden;
}

.form-control {
  padding: 0px 50px;
}

.form-input {
  width: 100%;
  padding: 12px 18px;
  margin-top: 15px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: none;
  font-size: 16px;
}

.form-submit {
  background-color: #fd7f02;
  width: 100%;
  margin-top: -15px;
  font-size: 27px;
  font-weight: 700;
  padding: 13px 35px;
  color: #ffffff;
  border-radius: 5px;
  outline: none;
  border: 0px solid;
}

.post-script {
  margin: 0px -15px;
  margin-top: -20px;
  padding: 5px 65px;
  font-size: 18px;
  font-family: sans-serif;
  color: #fff;
  
}
.post-script p {
  margin: 15px auto;
  padding-bottom: 10px;
  text-align: left;
  font-family: sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.47);
}

.footer {
  margin: 0 auto;
  text-align: center;
  padding: 20px 0px 40px;
  font-weight: 700;
  color: #fff;
  font-family: sans-serif;
  font-size: 16px;
}
.footer a {
  text-decoration: none;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.62);
}

@media only screen and (max-width: 770px) {
  .headline {
    font-size: 32px;
  }
  .main-container {
    width: 100%;
  }
  .main-content {
    margin: 0px 0px;
    margin-top: 30px;
    padding: 0px 10px;
  }
  .post-script {
    margin: 0px 0px;
    padding: 5px 15px;
  }
  .form-control {
    padding: 0px 15px;
  }
}/*# sourceMappingURL=style.css.map */

.btn{
  padding: 10px 60px;
  background: #fd7f02;
  border: 0;
  outline: none;
  cursor: pointer;
  font-size: 22px;
  font-weight: 500;
  border-radius: 30px;
  color: rgb(250, 253, 253);
  font-family: Arial, Helvetica, sans-serif;
}    

.popup {
  width: 400px;
  background: #eb0303;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-50%); scale:(0.1);
  text-align: center;
  padding: 0 30px 30px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  visibility: hidden;
  transition: transform 0.4s, top 0.4s ;
}
.open-popup{
  visibility: visible; 
  top: 50%;
  transform: translate(-50%,-50%); scale:(1);
}
.popup img{
  width: 100px;
  margin-top: -50px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);

}

.popup h2{
  font-size: 38px;
  font-weight: 500;
  margin: 30px 0 10px;

}

.popup button{
  width: 100%;
  margin-top: 50px;
  padding: 10px 0;
  background: #6fd649;
  color: #ffffff;
  border: 0;
  outline: none;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}