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, #282828, #1e2124);
    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: #967d55 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: #967d55;
    color: #000;
}

.link-bio .btn-primary {
    background-color: #967d55;
    border: none;
}

.link-bio .btn-secondary {
    background-color: transparent;
    border-color: #967d55;
    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 */
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

h1 {
    color: #333;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.email-form label {
    font-weight: bold;
}

.email-form input[type="text"],
.email-form input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.email-form input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.email-form input[type="submit"]:hover {
    background-color: #45a049;
}
