* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
	background-image:url(imagens/bkg.png)
}

.container {
    text-align: center;    
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
	background-color: transparent;
}

.profile {
    margin-bottom: 20px;
}

.profile-pic {
    width: 250px;
    height: auto;
    border-radius: 10%;
    object-fit: cover;
    margin-bottom: 10px;

}

h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

p {
    color: #666;
    font-size: 16px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: #D93226;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.link:hover {
    background-color: #0056b3;
}
