 * {
  cursor: url('https://cdn.cursors-4u.net/previews/lemon-76ef4324-32.webp') 32 32, auto !important;
}

.texto-arcoiris {
    background: linear-gradient(to right, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8b00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    background-size: 400% 400%;
    animation: rainbow-animation 5s ease infinite;
}

@keyframes rainbow-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sidebar-izq {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background-color: #D9ED72;
    border: 3px solid #f1c40f;
    border-radius: 0px;
    padding: 10px;
    box-shadow: 5px 5px 0px rgba(0,0,0,0.2);
    width: 200px;
    z-index: 100;
}

.sidebar-izq { left: 20px; }
.cajita-titulo {
    background-color: #f1c40f;
    color: #333;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: center;
}

.boton-side {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 1.3rem;
    padding: 8px;
    margin: 5px 0;
    background: rgba(255,255,255,0.4);
    border-radius: 0px;
    transition: 0.3s;
    text-align: center;
}

.boton-side:hover {
    background: #ffffff;
    transform: scale(1.3);
    color: #c0392b;
}

/* Para que no se pisen en pantallas chicas (celulares) */
@media (max-width: 1100px) {
    .sidebar-izq {
        position: static;
        transform: none;
        width: 80%;
        margin: 10px auto;
    }
    body {
        flex-direction: column;
    }
}

body {
  
  
        background-image: url('fondo.png'); 
            background-repeat: repeat;
            background-size: auto;
            
            'Courier Prime', monospace;
            display: flex;
            flex-direction: column;
            justify-content: center; /* Centra verticalmente */
            align-items: center;     /* Centra horizontalmente */
            min-height: 100vh;
            padding: 50px 0;
            margin: 0;
        }

        .contenedor {
           background-color: #D9ED72 !important; 
            color: #333;               
            padding: 40px;
            width: 80%;
            max-width: 600px;
            border: 4px solid #f1c40f; 
            border-radius: 0px;
            box-shadow: 0px 10px 30px rgba(0,0,0,0.5);
            
            /* ORDEN INTERNO */
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        h1 {
            color: #f1c40f;
            font-size: 5rem;
            text-shadow: 2px 2px #c0392b;
        }

        h2 {
            color: #000000; 
            font-size: 3rem;
            text-shadow: 1px 1px #c0392b;
        }
        
        ul {
            color: #000000; 
            font-size: 2rem;
            text-shadow: 1px 1px #c0392b;
        }

        a {
            color: #3498db;
            text-decoration: none;
            font-weight: bold;
        }

        a:hover {
            color: #ffffff; 
        }

        ul {
            list-style-type: none;
            padding: 0;
        }
        
        p {
            color: #000000;
            font-size: 2rem;
        }
        
         
         /* Animación de furia extrema */
@keyframes furia {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  20% { transform: translate(-3px, -2px) rotate(-1deg); }
  40% { transform: translate(-3px, 0px) rotate(1deg); }
  60% { transform: translate(3px, 2px) rotate(0deg); }
  80% { transform: translate(1px, -1px) rotate(1deg); }
  100% { transform: translate(-1px, 2px) rotate(-1deg); }
}

.hate {
  display: inline-block !important;
  color: red;
  font-weight: bold;
  animation: furia 0.1s infinite !important;
}         