@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;700&display=swap');

/* =================================== Base =================================== */
body {color: #383837; background: #fff; overflow-x: hidden; font-family: 'Ubuntu', sans-serif; font-weight: 300; font-size: 22px; color: #fff;}
a,button, input, textarea {-webkit-transition: .3s;-o-transition: .3s;transition: .3s; outline: 0; color: inherit; text-decoration: none;}
button, input[type=checkbox] {cursor: pointer; outline: 0;}
a:hover {text-decoration: none; color: inherit; outline: 0;}
a:focus, button:focus, input:focus, textarea:focus {outline: 0; text-decoration: none;}
ol {list-style-type: none;}
ul {-webkit-padding-start:0; -moz-padding-start:0; margin: 0; font-size: 0;}
ul li {list-style-type: none; font-size: initial;}
address {font-style: normal; margin: 0;}
p {line-height: 28px;}
* {margin: 0; padding: 0; -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; box-sizing: border-box;}
img {max-width: 100%; height: auto;}
sub, sup {font-size: inherit; vertical-align: unset; position: unset;}
strong {font-weight: 400;}
.grid {width: 100%; margin: 0 auto; display: grid; max-width: 1140px; padding: 0 30px;}


body {
  background-image: url('../img/bg.png');
  background-size: cover;
  background-position: center top;
}
section {
  text-align: center;
  padding-top: 100px;
}
section h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 15px;
}
section h1 b {
    background-color: #FF6900;
    padding: 3px 10px 6px;
    border-radius: 5px;
}
section h2 {
  margin-bottom: 18px;
  font-size: 42px;  
}
section p {
font-size: 33px;
    font-weight: 300;
    letter-spacing: -.2px;  
}
section a {
    background-color: #34c159;
    display: flex;
    width: fit-content;
    margin: 35px auto 5px;
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: 800;
    align-items: center;
    gap: 10px;  
  animation: zap 2s infinite;    
}
@keyframes zap {
    0% {box-shadow: 0px 0px 0px 0px rgb(91 204 120 / 25%);}
    50% {box-shadow: 0px 0px 0px 15px rgb(91 204 120 / 25%);}
    
}
section > img {
    width: 500px;
    border-radius: 10px;
    margin-top: 30px;  
}
section ul {
  text-align: center;
}
section ul li {
  font-weight: 100;
  margin-bottom: 15px;
  font-size: 26px;
}


form {
  margin-top: 20px;
}
form h2 {
  margin-bottom: 10px;
}
form p {
  margin-bottom: 40px;
}
form input {
  background: none;
  display: flex;
  width: 100%;
  padding: 20px;
  border-radius: 15px;
  background: #fff;
  border: 0;
  font-size: 18px;
  color: #1b1b1b;
}
form div {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
form button {
  background: #34c159;
  padding: 10px;
  border: 0;
  font-size: 24px;
  font-weight: 900;
  font-family: 'Ubuntu';
  width: 100%;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}