body {
    background-color: #BFD1E5;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    box-sizing: border-box;
}

#nome {
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 10px;
}

.links{
    text-align: center;
    margin-bottom: 30px;
}

.bloco-bio {
    display: flex;
    flex-direction: row;
    align-items:flex-start;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin-bottom: 30px;
    padding: 20px;
}

.foto-container{
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.minha-foto{
    width: 300px;
    display: block;
}

.texto-descricao{
    flex: 1;
    line-height: 1.4;
    font-size: 1.1em;
}

.bloco-conteudo{
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
}

.listas, .listas-habilidades{
    line-height: 30px;
    font-family: 'Gill Sans', sans-serif;
}

@media (max-width: 600px){
    .bloco-bio{
        flex-direction: column;
        text-align: center;
    }
}

