body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f7f7f7;
    margin: 0;
}

.container {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile {
    margin-bottom: 20px;
}

.profile-img {
    width: 300px;
    height: auto;
    margin-bottom: 10px;
}

.links {
    display: flex;
    flex-direction: column;
}

.link {
    display: block;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    margin: 5px 0;
    transition: background-color 0.3s;
}

.link:hover {
    background-color: #0056b3;
}

.social-media {
    margin-top: 20px;
}

.social-icon {
    width: 24px; /* Ajuste o tamanho do ícone */
    height: 24px; /* Ajuste o tamanho do ícone */
    margin: 0 10px;
    vertical-align: middle;
}
