body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif; /* Updated to a Garamond-like font */
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding-top: 50px;
}

.bio {
    max-width: 600px;
    padding: 20px;
/*    border: 1px solid #fff; */
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

.biotexto {
    text-align: justify; 
}

.profile-pic {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 1px solid #fff; /* Adiciona uma borda branca */
 /*   border: 2px solid #fff; */
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
}

a {
    color: #fff;
}

a:hover {
    color: #ffae00;
}


.links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.links a {
    text-decoration: none;
    color: #fff;
    font-size: 2rem; /* Increased size */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Increased size */
    height: 40px; /* Increased size */
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s, color 0.3s;
}

.links a:hover {
    background-color: #fff;
    color: #000;
}

.links a i {
    font-size: 1.5rem; /* Increased size */
}

nav {
    background-color: #000;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.navbar {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    transition: color 0.3s, border-bottom 0.3s;
    padding: 5px;
}

.navbar a:hover {
    color: #ffae00;
    border-bottom: 1px solid #ffae00;
}

.album-cover {
    display: block;
    margin: 0 auto 20px; /* Centraliza a imagem e adiciona espaçamento abaixo dela */
    max-width: 65%; /* Garante que a imagem não seja muito grande */
    height: auto; /* Mantém a proporção da imagem */
    border: 1px solid #fff; /* Adiciona uma borda branca */
    border-radius: 5px; /* Bordas arredondadas para um visual mais elegante */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Adiciona uma sombra */
}