@font-face {
            font-family: 'Village';
            src: url('css/Village.ttf') format('truetype');
        }


body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: linear-gradient(to right, #007bff, #00c853);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2em;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.icon a {
    color: white;
    font-size: 6em;
    transition: color 0.3s;
}

.icon a:hover {
    color: #000000;
}

.nome {
            font-size: 3em;
            font-weight: bold;
            color: #000000;
            text-transform: uppercase;
            
            text-align: center;
            font-family: 'Village', sans-serif;
        }

        @keyframes glow {
            0% { text-shadow: 0 0 5px #ffcc00, 0 0 10px #ffcc00, 0 0 15px #ff6600; }
            100% { text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff6600, 0 0 30px #ff3300; }
        }

        @keyframes moveUpDown {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
