* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: linear-gradient(#5faee3, #0077b6);
    font-family: 'Calibri', sans-serif;
    overflow-x: hidden;
}

/* Ocultar barras de desplazamiento para el menú */
*::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}