body {
    font-family: Arial, sans-serif;
    background-color: #f7f3e9;
    color: #5d4037;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #8d6e63;
    object-fit: cover;
    margin-bottom: 10px;
	text-align: center;
}

h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
	text-align: center;
}

main {
    width: 90%;
    max-width: 600px;
}

.link-button {
    display: block;
    background-color: #8d6e63;
    color: #fff;
    padding: 15px 20px;
    margin-bottom: 15px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.link-button:hover {
    background-color: #6a4f4b;
	text-align: center;
}

.label-centralizado {
  text-align: center;
}

.container-botao {
    display: flex;
    justify-content: center; /* Isso centraliza horizontalmente */
	text-align: center;
}