@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #0A0D18;
    color: #ffffff;
    text-align: center;
    font-family: 'Raleway', sans-serif;


}

h1{
    line-height: 60px;
    padding-top: 150px;
    height: 40vh;
    /* border: 10px solid red; */
    font-size: 55px;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.7px;
}

p{
    height: 10vh;
    padding-top: 20px;
    /* border: 10px solid red; */
    color: #FFFFFFA3;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.7px;
}


form{
    height: 20vh;
    /* border: 10px solid red; */
    margin-left: 10%;
    margin-right: 10%;
}


.campo{
    background-color: #ffffff;
    width: 50%;
    height: 50px;
    border: none;
    border-radius: 5px;
    text-align: left;
    padding-left: 20px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #050030a3;
    font-size: 18px;
    font-weight: 600;
    outline: none;
}
.btn{
    width: 20%;
    height: 50px;
    border: none;
    border-radius: 5px;
    background-color: #B68E31;
    color: #ffffff;
    font-size: 15px;
}

h3{
    height: 30vh;
    /* border: 10px solid red; */
    font-family: "Roboto", Sans-serif;
    color: #B68E31;
    font-size: 14px;
    font-weight: 400;
}


@media only screen and (max-width: 1000px) {
    body {
        height: 100vh;
    }

    h1{
     
        line-height: 35px;
        height: 40vh;
        /* border: 1px solid red; */
        font-size: 2rem;
    }
    p{
        height: 20vh;
        font-size: 14px;
        /* border: 1px solid red; */
        margin: 10px 10px;


    }

    form{
        height: 30vh;
        width: 90%;
        margin: auto;
    }
    
    .campo, .btn{
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
    }
  }