html{
    background-color: var(--gelo);
}
*{
    font-family: 'Lexend Peta', sans-serif;
}
/*HEADER*/
.cabecalho{
    background-image: url("../assets/pexels-andrea-piacquadio-3784337.jpg");
    background-size: cover;
    background-position:center;
    filter: drop-shadow(5px 5px 15px rgb(75, 71, 71));
    height: 70vh;
    font-size: 2.8rem;
    text-align: left;
    font-family: 'Rubik Mono One', sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px #000;
}
.cabecalho img{
    position: absolute;
    margin: 2rem;
    right: 0;
    border-radius: 50%;
    width: 5rem;
}

.titulo{
    padding: 10vh ;
    color: aliceblue;
}

.sessao_primari{
    width: 90%;
    margin: auto
}
.primari_convite{
    margin: 10vh auto;
    text-align: center;
}
.primari_convite h2{
    margin-top: 3rem;
    font-size: 3.5rem;
    color: var(--verde);
}
.primari_convite p{
    margin-top: 3rem;
    font-size: 1.5rem;
    color: var(--azul);
}

/*MAIN*/
.sessao_secundare{
    background-color: var(--verde);
    padding: 2rem auto;
}

.sessao_secundare h1{
    margin: 5vh auto;
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color:var(--gelo); 
    padding-top: 10vh;  
}

.secundare_div{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.secundare_box{
    margin: 1rem auto;
    width: 280px;
    padding: 30px;
    box-shadow: 2px 2px 5px;
    border-radius: 10px;
    background-color: var(--gelo);
}
.icon-title{
    display:flex;
    
}
.secundare_box:hover{
    transform: scale(1.1); 
}
.secundare_box ion-icon{
    font-size: 20rem;
    color: var(--verde);
    max-height: 150px;
}

.sessao_secundare h2{
    font-size: 2rem;
    font-family:'sans-serif';
    font-weight: bold;
    color:var(--verde);
    align-self:center;  
}
.sessao_secundare p{
    font-size: 1.2rem;   
}
/* sobre */
.sessao_terceare{
    font-size: 1.5rem;
    text-align: right;
    color: var(--azul);
    padding: 20px;
}
.sessao_terceare div{
   padding-top: 30px;
}

#ilustra3{
    width: 300px;
}

/*FOOTER*/
.rodape{
    background-color: var(--verde);
    text-align: center;
    padding: 10%;
    filter: drop-shadow(5px 5px 15px rgb(75, 71, 71));
}
.rodape a {
    color: black;
    font-weight: bold;
    transition: 1s;
}
.rodape a:hover {
    color: rgb(116, 109, 12);
}

/*Variaveis*/
:root {
    --verde: #00bd4b;
    --azul: #0065ff;
    --gelo: aliceblue;
}
elemente{
    background-color: var(--salmão);
}
/*RESPONSE*/

@media screen and (min-width: 768px){
    .titulo h1{ 
        margin: auto;
        font-size: 4rem;
    }
    .secundare_div{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .secundare_box{
        width: 35%;
        margin: 20px;
    }
    
    .sessao_terceare{
        display: flex;
        padding-top: 5vh;
        padding-left: 5vw;
        padding-bottom: 5vh;
        
    }
    .sessao_terceare div{
        width: 50%;
    }

    #ilustra3{
        width: 400px;
        height: 200px;
    }
    .rodape{
        padding: 30px;
       
    }
}    
@media screen and (min-width: 1024px){
    body{
        width: 100%;
    }
    .container{
        max-width: 1024px;
        margin: auto;

    }
   
    .titulo{ 
        margin: auto;
        font-size: 4rem;
        max-width: 50%;
    }
   
    .secundare_box{
        width: 40%;
        margin: 20px;
    }
    
    .sessao_terceare{
        display: flex;
        padding-top: 10vh;
        padding-left: 10vw;
    }

    #ilustra3{
        width: 400px;
        height: 200px;
    }
    .rodape{
        padding: 30px;
       
    }
    
}    