/* Reset básico e centralização */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    padding: 20px;
}

/* Estilo do Título com animação */
h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
}

p {
    color: #888;
    font-size: 1.2rem;
}

.icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}

/* Efeito de animação: Brilho suave */
@keyframes glow {
    from {
        text-shadow: 0 0 10px #333, 0 0 20px #111;
        opacity: 0.8;
    }
    to {
        text-shadow: 0 0 20px #555, 0 0 30px #333;
        opacity: 1;
    }
}
