@import url(Global.css);

*{
    margin: 0;
    padding: 0;
}

.apresentation{
    width: 100%;
    min-height: 100vh;
    max-height: fit-content ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 5px;
    background-image: url(../img/fundo-principal.png);
    
    
     
    
}

.container{
    flex-direction: column;
    height: 90vh;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.informationCard{
    width: 700px;
    height: 700px;
    margin-left: 400px;
    
    
}

.informationCard h1{
    margin-top: 250px;
    font-size: 8em;
    font-family: var(--font-embed);
    margin-left: -10px;
    text-align: left;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 2px rgb(158, 158, 158);

}

.informationCard h2{
    text-shadow: 2px 2px 2px rgb(158, 158, 158);
    text-align: left;
    font-size: 1.8em;
    margin-top: 40px;
    font-family: var(--font-embed);
    color: rgb(255, 255, 255);
   
}

.informationCard a{
    text-decoration: none;
    display: block;   
    margin-top: 40px;
    
}

#consulta{
    padding: 20px;
    background-color: rgb(109, 218, 109);
    font-weight: 700;
    font-size: 2em;
    border-radius: 8px;
    font-family: var(--font-embed);
    color: rgb(252, 252, 252);
    width: fit-content;
    box-shadow: 2px 2px 2px gray;
    transition: 0.3 ease-in-out;
    
}


#consulta:hover{
    box-shadow: 0px 0px 0px;
    background-color: rgb(118, 230, 118);
}


@media screen and (max-width: 650px){
    .apresentation{
        background-image: url(../img/fundo-principal-mobile.png);
    }



    .informationCard{
        width: 400px;
        height: 400px;
        margin-left: 200px;
    }
    .informationCard h1{
        margin-top: 150px;
        font-size: 5em;
        font-family: var(--font-embed);
        margin-left: -10px;
        text-align: left;
        color: rgb(255, 255, 255);
        text-shadow: 2px 2px 2px rgb(158, 158, 158);

    }

    .informationCard h2{
        text-shadow: 2px 2px 2px rgb(158, 158, 158);
        text-align: left;
        font-size: 1.2em;
        margin-top: 40px;
        font-family: var(--font-embed);
        color: rgb(255, 255, 255);
       
    }

    #consulta{
        
        font-size: 1.5em;
        
    }
}

@media screen and (max-width: 1168px ) and (min-width:600px){
    .apresentation{
        background-image: url(../img/fundo-tablet.png);
        background-size: cover;
    }

    
    .informationCard{
        width: 400px;
        height: 400px;
        margin-left: 200px;
    }
    .informationCard h1{
        margin-top: 150px;
        font-size: 5em;
        font-family: var(--font-embed);
        margin-left: -10px;
        text-align: left;
        color: rgb(255, 255, 255);
        text-shadow: 2px 2px 2px rgb(158, 158, 158);

    }

    .informationCard h2{
        text-shadow: 2px 2px 2px rgb(158, 158, 158);
        text-align: left;
        font-size: 1.2em;
        margin-top: 40px;
        font-family: var(--font-embed);
        color: rgb(255, 255, 255);
       
    }

    #consulta{
        
        font-size: 1.5em;
        
    }


}










