@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    margin: 0;
    padding: 0;
    --fonte-principal: 'Roboto', sans-serif;
    --fonte-secundaria: 'Courier Prime', monospace;
    --roxo: #100010;
}

body{
    background-color:  var(--roxo);
    color: white;
    font-family: var(--fonte-principal);
}

.cabecalho {
    display: flex;
    padding: 20px;
    justify-content: space-between;
}

.nome_Cabecalho {
    font-size: 24px;
    font-weight: bold;
}

.menu_Navegacao {
    padding: 10px;
}

.menu_Navegacao_lista {
    display: flex;
    list-style-type: none;
    padding: 0;
}

.menu_Navegacao_lista_item {
    margin: 0 15px;
}

.menu_Navegacao_lista_item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.secao_Apresentacao {
    display: flex;
    align-items: center;
}

.secao_Apresentacao_Texto {
    margin: 1.2em;
}

.titulo {
    font-family: var(--fonte-principal);
}

.apresentacao {
    font-family: var(--fonte-secundaria);
    font-size: 18px;
    margin: 20px 0;
}

.imagem_Dev_Frontend {
    width: 40%;
    height: auto;
    border-radius: 3px;
    margin: 2em;
}

.projetos_Wordpress {
    background-image: url(./img/wordpress-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.titulo_Secao {
    font-family: var(--fonte-secundaria);
}

.secao_Projetos_Lista {
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.secao_Projetos_Item {
    display: flex;
    flex-direction: column;
    margin: 20px;
    padding: 20px;
}

.secao_Projetos_Item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.secao_Projetos_Item_Imagem {
    width: 180px;
    height: 370px;
    border-radius: 10px;
    object-fit: cover;
}

.secao_Sobre_Contato_lista {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    padding: 0;
}

.secao_Sobre_Contato_Item {
    margin: 10px;
    padding: 10px;
}

.secao_Sobre_Contato_Item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.secao_Habilidades_Lista {
    display: flex;
    list-style: none;
}

.secao_Habilidades_Lista_Item {
    padding: 10px;
}