@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

body {
    background: linear-gradient(236.85deg, #041832 27.26%, #3468A7 96.03%);
    font-family: 'Roboto', sans-serif;

    
}

.container {
    background: #ECF4FF;
    color: #1C1C1C;
    margin: 64px;
    border-radius: 20px;
    box-shadow: 6px 6px 6px #0E1D2F;
    padding: 64px;
}

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

.perfil {
    display: flex;

}

.perfil-foto {
    border-radius: 460px;
    max-height: 160px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.titulos {
    margin-left: 16px;
}

.titulos h1 {
    font-weight: 700;
    font-size: 36px;
}

.titulos h3 {
    font-weight: 400;
    font-size: 24;
}

.tema button {
    align-self: flex-end;
    font-size: 24px;
    font-weight: 400;
    padding: 8px 16px;
    background: #ECF4FF;
    border-radius: 100px;
}

.projetos {
    display: flex;
    flex-direction: column;

    background: linear-gradient(230.65deg, #499CFE 27.49%, #9CC8FC 83.19%);
    margin-top: 32px;
    padding: 32px;

    box-shadow: 2px 2px 4px rgba(16, 16, 16, 0.42);
    border-radius: 20px;
}

.projetos-titulo {
    list-style: none;
    font-weight: 700;
    font-size: 36px;
}

.projetos-itens {
    list-style-type: none;
    font-size: 24px;
    font-weight: 400;
}

.projetos-itens a {
    color: #1C1C1C;
    text-decoration: none;
}


.dark {
    background: linear-gradient(236.85deg, #375886 27.26%, #6887A9 96.03%);
}

.dark .container {
    background: #333439;
    color: #F6F6F6;
}

.dark .projetos {
    color: #1C1C1C;
}

.dark .tema button {
    background: #1C1C1C;
    color: #FFFFFF;
    border: 2px solid #F7F7F7;
}