body {
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-size: 2rem;
    color: #333;
}

button {
    padding: 10px 20px;
    margin-top: 10px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #4CAF50;
}

/* Fondo completo del efecto */
#aestheticEffect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(to bottom, #1d1d3c, #3e005a);
    overflow: hidden;
    pointer-events: none;
}

/* Efecto de sol */
.aesthetic-sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff5d8f, #ff2c75, #f50057);
    box-shadow: 0 0 20px #ff5d8f, 0 0 40px #ff2c75, 0 0 60px #f50057;
    animation: pulse 4s ease-in-out infinite;
}

/* Animación para atenuar el brillo del sol */
@keyframes pulse {
    0% {
        opacity: 0.9; /* visible */
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px #ff5d8f, 0 0 40px #ff2c75, 0 0 60px #f50057;
    }
    50% {
        opacity: 0.7; /* atenuado */
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px #ff5d8f, 0 0 20px #ff2c75, 0 0 30px #f50057;
    }
    100% {
        opacity: 0.9; /* visible */
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px #ff5d8f, 0 0 40px #ff2c75, 0 0 60px #f50057;
    }
}

/* anim para botton */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}