* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    
    background-image: url("../images/backdrop.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -2;
   /* animation: movimientoFondo 20s ease-in-out infinite alternate; */
}

/* body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
    backdrop-filter: blur(2px);
    z-index: -1;
} */

@keyframes movimientoFondo {
    0% { transform: scale(1) translate(0, 0) rotate(0deg); }
    50% { transform: scale(1.04) translate(-1%, 1%) rotate(0.5deg); }
    100% { transform: scale(1.02) translate(1%, -1%) rotate(-0.5deg); }
}