body, html {
    margin-top: 50px;
    margin-bottom: 100px;
    font-family: 'Be Vietnam', sans-serif;
    background: 
        url('fundo.png') no-repeat center center fixed,
        linear-gradient(to right, #223145, #1C3B60);
    background-size: cover, cover; /* Faz com que a imagem e o degradê cubram toda a tela */
}

.container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-pic {
    border: #A08540 solid 15px;
    max-height: 350px;
}

.link-bio .btn {
    padding: 20px;
    font-size: 18px;
    margin-top: 10px;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid transparent;
    color: #fff;
    text-decoration: none; /* Remove a sublinhado */
    background-color: transparent; /* Garante que a cor de fundo inicial seja transparente */
}

.link-bio .btn:hover {
    background-color: #A08540;
    color: #223145;
}

.link-bio .btn-primary {
    background-color: #A08540;
    border: none;
}

.link-bio .btn-secondary {
    background-color: transparent;
    border-color: #A08540;
    color: #fff;
}

.link-bio .btn-secondary i {
    margin-right: 8px;
}

.link-bio .btn-secondary[href*="instagram"] {
    color: #fff; /* Cor do texto inicial */
    text-decoration: none; /* Remove qualquer sublinhado */
}

.link-bio .btn-secondary[href*="instagram"]:hover {
    color: #000; /* Cor do texto ao passar o mouse */
}