:root{
    
    --cor1 : rgb(02, 06, 60);
    --cor2 : rgb(245, 197, 78);
    }
    
    /* link video https://www.youtube.com/watch?v=WZ0I8lbVJO0*/ 
    
    body{
        background-color: var(--cor2);
    }

    .botao{
margin-top: -45%;
margin-left:-57%;
background-color: aquamarine;


    }
    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    nav{
        background-color: var(--cor1);
        transition: background .5s;
    }
    
    nav li{
        display: inline-block;
        
    }
    
    nav li a{
        display: inline-block;
        color: white;
        text-decoration: none;
        font-family: 'Times New Roman', Times, serif;
        font-size: 25px;
        padding: 35px;
        transition: background .5s;
    }
    
    nav li a:hover{
        background-color: var(--cor2);
    }
    
    .dropdown-menu{
        position: absolute;
        box-shadow: 0 0 4px black;
        display: none;
    }
    
    .dropdown-menu a{
        display: block;
        color: black;
        transition: background .5s;
        font-family: sans-serif;
        font-size: 20px;
        width:256px;
        height: 95px;
        text-align: center;
        background-color: white;
    }
    
    .dropdown:hover .dropdown-menu{
        display: block;
    }
    
    footer{
        height: 110px;
        width:100%; /*tamanho da foooter*/
        font-family:EB Garamound; /*letrra do footer*/
        display: flex; /*tipo do display "felxivel"*/
        justify-content: space-around; /*deixa os elementos divididos de forma central*/
        position: absolute; /*posição absoluita*/
        bottom: 0; /*serve para deixar o footer no chão*/
        padding: 15px; /*margem interna do footer de 15px*/
        font-size: 12px; /*tamanho da letra*/
        color:whitesmoke; /*Cor da letra*/
        background-color: rgb(02, 06, 60);/*cor do fundo*/
        text-align: center; /*texto alinhado no centro*/
        
        }



   /*parte css formulario*/
   
   *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--cor1);
}
section{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px 45px;
    background: #1d1d2e;
    width: 500px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    margin-left: 79%;
}
section h2{
    color: #f5f5f5;
    font-size: 2.5rem;
    margin: 2rem;
}
section form{
    display: flex;
    flex-direction: column;
    width: 100%;
}
form label{
    color: #f5f5f5;
    font-size: 17px;
    margin-bottom: 4px;
}
form input{
    padding: 15px;
    outline: none;
    border: 0;
    margin-bottom: 20px;
    font-size: 15px;
    transition: all 0.5s;
}
form input:focus{
    border-radius: 16px;
}
form textarea{
    padding: 10px;
    outline: none;
    border: 0;
    font-size: 15px;
    margin-bottom: 30px;
    transition: all 0.5s;
}
form textarea:focus{
    border-radius: 16px;
}
form button{
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    background: transparent;
    border: 2px solid #f5f5f5;
    color: #f5f5f5;
    transition: all 1s;
    margin-bottom: 20px;
}
form button:hover{
    background: #f5f5f5;
    color:var(--cor1);
    border-radius: 16px;
}

/*Página do Obrigado*/

.main{
   display: flex;
   align-items: center;
   justify-content: center;
   min-height: 100vh;
   background: var(--cor1);
   flex-direction: column;
}
.text{
    font-size: 45px;
    color: #f5f5f5;
    margin-bottom: 30px;
}
.paragrafo{
    color: #f5f5f5;
    margin-bottom: 50px;
}
.btn{
    padding: 15px 55px;
    background: #f5f5f5;
    text-decoration: none;
    color: var(--cor1);
    font-size: 18px;
    transition: all 0.5s;
}
.btn:hover{
    border-radius: 16px;
}


   /*parte css formulario FIM*/



        