* {
    font-family: "Montserrat", sans-serif;
}

body {
    background: url('./img/fondo.jpg');
    background-size: cover; /* Cambiado: Cubre todo sin deformar la imagen */
    background-repeat: no-repeat;
    background-position: center center; /* Centra la imagen */
    background-attachment: fixed; /* LA CLAVE: Fija el fondo al hacer scroll */
    min-height: 100vh; /* Asegura que mínimo mida el 100% de la pantalla */
    margin: 0;
}

.option {
    display: flex;
    flex-direction: column;
    background-color: rgb(0, 0, 0);
    margin-bottom: .5rem;
/*     
    width: 150px; */

    a {
        text-decoration: none;
        color: white;
        text-align: center;
        transition: all 1s ease-in;
        padding: 1rem;

        &:hover {
            background-color: rgba(238, 255, 0, 0.71);
        }

        i{
            margin-top: .5rem;
        }

        p {
            padding-top: 1rem;
        }
    }



}


.scrollbar::-webkit-scrollbar {
    display: none;
}

.tablas-y::.scrollbar::-webkit-scrollbar {
    display: none;
}

.control {
    resize: none;
}

.body {
    width: 90%;
}
