*{
    margin:0 ;
    padding:0;
    box-sizing: border-box;
}
main{
    background-color: black;
   
    
    
  
}
/* PARTE DO CONVITE  */

@media (max-width: 600px) {
    main{
        padding: 0;
    }
}
.convite{
    text-align: center;
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
   
   
} 
@media (max-width: 600px) {
    .convite{
        width: 100%;
        height: 100vh;
        margin: 0;
    }
}
div > button{
    width: 250px;
    height: 50px;
    border-radius: 15px;
    background-color: blue;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    margin-top: 400px;
   
    margin-left: 40%;
}
@media (max-width: 600px) {
    div > button{
        width: 250px;
        height: 40px;
        margin-top: 300px;
        margin-left: 120px;
    }
}
/*------*/




/* PARTE DO FORMULARIO */
section{
    width: 100%;
    height: 100vh;
    background-color: white;
    position: absolute;
    margin-left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#formulario{
    width: 500px;
    height: 45vh;
    background-color: white;
    border: solid blue 1px;
    margin:50px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px gray;
    
}
@media (max-width: 600px) {
  

#formulario{
    width: 300px;
    height: 40vh;
    background-color: white;
    border: solid blue 1px;
    margin-left: 100px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px gray;
    
}
}
h2{
    text-align: center;
    margin-bottom: 50px ;
    margin-top: 25px;
    
}
label{
    
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    justify-self: center;
    text-align: center;
    color: blue;
    display: flex;
}
 input{
    width: 300px;
    height: 30px;
    border-radius: 10px;
    border: 1px solid blue;
    justify-content: center;
    font-size: 20px;
    display: flex;
    margin-left: 70px;
    margin-bottom: 20px;
    padding-left: 10px;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
   
}
#enviar{
   display: flex;
    margin: 0 auto;
    width: 200px;
    height: 30px;
    border-radius: 15px;
    background-color: blue;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    
}
@media (max-width: 600px) {
    #nome{
        width: 200px;
        height: 30px;
        margin: 20px auto;
        padding: auto;
        
    }
    #email{
        width: 200px;
        height: 30px;
        margin: auto;
        padding: auto;
        
    }
    #enviar{
        width: 150px;
        height: 30px;
        margin:25px auto;
        font-size: 15px;
    
    }
}
/*------*/