body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    align-items: center;
}

.container {
    max-width: 600px;
    margin: 30px auto;
    padding: 50px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center; /* Adicionado para centralizar o conteúdo */
}

h1 {
    color: #333;
}

p {
    color: #333;
    margin-bottom: 15px;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.bullet-points {
    text-align: left;
}

.profile img {
    width: 150px; /* Tamanho ajustável conforme necessário */
    height: 150px; /* Tamanho ajustável conforme necessário */
    border-radius: 50%; /* Torna a imagem circular */
    margin-bottom: 20px; /* Espaçamento abaixo da imagem */
}

.social-icons {
    margin-top: 20px; /* Espaçamento acima dos ícones */
}

.social-icons a {
    margin-right: 10px; /* Espaçamento entre os ícones */
}

nav{
    max-width: 600px;
    margin: 10px auto;
    text-align: center;
    gap: 10;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar a{
    color: #777;
    text-decoration: none; 
    text-align: center;
    font-weight: 500;
    font-size: large;
    margin:0 20px;
}

.navbar a:hover {
    text-decoration: underline;
}
