body {
    background: linear-gradient(to right, #006341, white, #ce1126);
    background-size: cover;
}

/* Estilos para confeti optimizados para GPU */
.confetti {
    position: fixed;
    top: -10px;
    width: 10px;
    height: 10px;
    background-color: red;
    animation: confetti-fall 5s linear infinite;
    opacity: 0.7;
    will-change: transform, opacity;
    /* Aceleración por hardware */
}

/* Colores de confeti */
.confetti:nth-child(2n) {
    background-color: green;
}

.confetti:nth-child(3n) {
    background-color: white;
}

.confetti:nth-child(4n) {
    background-color: red;
}

.confetti:nth-child(5n) {
    background-color: #FFD700;
}

.confetti:nth-child(6n) {
    background-color: #CE1126;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.titulo,
.subtitulo {
    color: #006341;
}