@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    border: 0;
    color: white;
    font-family: "Saira", sans-serif;
}

body {
  background-color: #000;

}

.h1 {
  font-size: 90px;
  font-family: "Public Sans", sans-serif;
  font-weight: 800;
  color: #ffffff;
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  text-align: center;
  margin-top: 5%;
}

.conteiner_text {
  width: 100%;
  margin-top: 2%;
  display: flex;
  justify-content: center;
  
}

.h1_p {
  margin: 0% 10% 1% 10%;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  width: 60%;
}


.ccb {
  display: flex;
  justify-content: center;
}
.text {
  margin: 2% 0 0 0;
  font-size: 25px;
}
.conteiner_btn{
  display: flex;
  text-align: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 7%;
}
.div_btn {
  display: flex;
  justify-content: center;
}
.info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.text_advertencia {
  width: 100%;
  display: flex;
  justify-content: center;
}
.text_advertencia p {
  width: 80%;
  font-size: 16px;
}









/**---------------------------scroll-bar-----------------------------------*/
body::-webkit-scrollbar-thumb {
    background-color: #FFAC37;
}

/*-----------------------------------btn-----------------------------------------*/

.btn_submit  {
  background-image: linear-gradient(to right, #FF8008 0%, #FFC837  51%, #FF8008  100%);
  margin-top: 3%;
  padding: 1% 1%;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  font-size: 30px;
  background-size: 200% auto;
  color: white;            
  width: 700px;
  border-radius: 50px;
  display: block;
  justify-content: center;
  cursor: pointer;
}

.btn_submit:hover {
  background-position: right center; 
  color: #fff;
  text-decoration: none;
}


