@import url(resumo.css);

*{
    font-family:'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', 'sans-serif';
    color:darkslategray;
    font-size: 16px;
}

html {
    height: 100%;
    width: 100%;
}

section div{
    margin-left: 20px;
}

body{
    background-color: azure;
}

.apresentacao {
    display: flex;
    background-color: #C3D0D5;
    border-radius: 10px;
}

h1, .apresentacao p{
    color: rgba(0 , 0, 0, 0.6);
    font-size: 18px;
    
}

.dados_pessoais div{
    display:inline-block;
    height: 100%;
    margin-right: 200px;
}

a{
    text-decoration: none;
    transition: box-shadow 0.5s;
}

a:hover{
    color:azure;
    text-decoration:underline;
    box-shadow: 0px 3px 5px darkslategray;
    border-radius: 4px;
    background-color: darkslategrey;
}

.experiencias dt a{
    font-size: 15px;
    font-weight: bold;
}

.experiencias dd{
    margin: 15px;
}

.competencias ul{
    text-align: center;
}
.items_competencias{
    display:inline-block;
    height: 100%;
    margin-inline-end: 100px;
    justify-content: space-between;
    text-align: start;
    
}

.competencias_elements{
    color:rgba(0 , 0, 0, 0.6);
}

.formacao dt a{
    font-size: 15px;
    font-weight: bold;
}

.formacao dd{
    margin: 15px;
}

.voltar_topo{
    font-weight: bold;
    margin-left: 0px;
}

@media screen and (max-width: 843px ){

    .items_competencias{
        display: grid;
        height: 100%;
        width: 100%;
        margin-inline-end: 100px;
        grid-template-columns: 1fr 1fr;
        gap: 3px;
    }
}

@media screen and (max-width: 543px ){

    .items_competencias{
        display: grid;
        height: 100%;
        width: 100%;
        margin-inline-end: 100px;
        grid-template-columns: 1fr;
        gap: 3px;
        
    }
}