﻿/*Propriedades gerais do corpo do site*/
body {
    background-color: #1F105D; 
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Orienta', sans-serif;
    color: whitesmoke;
}

/*Propriedade de parágrafos*/
p {
    text-align: justify;
}

/*Propriedades gerais do cabeçalho do site (elementos pai e filhos)*/
.header {
    width: 100%;
    max-width: 800px;
    padding: 8px;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    text-align: center;
}

.header__link {
    text-decoration: none;
    padding: 30px;
    position: relative;
}

.header__link:hover {
    opacity: 50%;
}

/*Estilizando ícones de redes sociais e rodapé*/
.redes {
    width: 100%;
    display: block;
    text-align: center;
}

.icone__redes{
    width: 60px;
}

.icone__rodape{
    width: 24px;
}

.icone--texto {
    margin: 0 8px;
}

/*Propriedades gerais da parte principal do site*/
.main {
    width: 100%;
    max-width: 700px;
    padding: 8px;
    box-sizing: border-box;
    margin: 0 auto;
}

/*Estilizando parte de perfil*/
.perfil {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.perfil__foto {
    width: 100%;
    max-width: 200px;
    border-radius: 50%;
}

.perfil__header {
    width: 100%;
    max-width: 800px;
    margin: 0;
    padding: 0;
}

.perfil__nome {
    font-family: 'Fira Code', monospace;
    font-size: 52px;
    font-weight: 400;
    margin: 16px 0;
}

.perfil__descricao {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    width: 100%;
    max-width: 350px;
    text-align: justify;
}

/*Estilizando parte de projetos*/
.section {
    padding: 8px;
    width: 100%;
    max-width: 800px;
    margin: 24px auto;
    box-sizing: border-box;
}

.section__titulo {
    font-size: 48px;
    font-weight: 400;
    margin: 16px 0;
    font-family: 'Fira Code', monospace;
    text-align: center;
}

.projeto {
    background-color: rgba(78, 51, 187, 0.10);
    padding: 8px;
    margin: 16px 0;
    box-sizing: border-box;
    border-radius: 3px;
}

.projeto__titulo {
    font-size: 18px;
    font-weight: 400;
    margin: 8px 0;
}

.projeto__descricao {
    font-size: 16px;
    font-weight: 400;
    margin: 8px 0;
}

/*Propriedades gerais do rodapé*/
.footer {
    width: 100%;
    height: 42px;
    background-color: rgba(78, 51, 187, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
}

.footer__texto {
    font-size: 14px;
    font-weight: 400;
    color: whitesmoke;
    display: flex;
    align-items: center;
}