body {
    font-family: 'Arial', sans-serif;
    background: url('https://img.freepik.com/fotos-gratis/borrao-abstrato-no-supermercado_1339-4320.jpg') no-repeat center center fixed; 
    background-size: cover; 
    color: #fff; 
    margin: 0; 
    display: flex; 
    justify-content: center; 
    align-items: flex-start; /* Alinhamento ao topo */
    height: 100vh; 
    overflow: auto; /* Permitir rolagem */
}

.container {
    margin-top: 20px; /* Ajuste conforme necessário */
    text-align: center;
    background: rgba(0, 0, 0, 0.7); 
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 30px;
    max-width: 400px; 
}


.profile img {
    border-radius: 50%;
    width: 150px; /* Aumenta o tamanho da imagem */
    height: 150px; /* Aumenta o tamanho da imagem */
    border: 5px solid #fff; /* Borda branca */
}

h1 {
    margin: 10px 0;
    font-size: 24px; /* Tamanho da fonte */
}

p {
    font-size: 16px; /* Tamanho da fonte */
    margin-bottom: 20px;
}

.links {
    margin-top: 20px;
}

.link {
    display: block;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    background: #042EDB; /* Cor de fundo do link */
    color: white;
    text-decoration: none;
    transition: background 0.3s;
    font-weight: bold; /* Negrito para destaque */
}

.link:hover {
    background: #264597; /* Cor ao passar o mouse */
}