@import url(colores.css);
@import url(fawesome-all.css);
@import url();
::root {
    --font-main: "Poppins";
    --main-bg: blue;
    --main-gradient: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}


* {
    padding: 0;
    margin: 0;
    font-family: var(--font-main);
    box-sizing: border-box;
    text-decoration: none;

}

body {
    height: 100vh;
    position: relative;
}

.c-white{
    color: white;
}

.p-l-4em{
    padding-left: 4em;
}
.centrado {
    display: grid;
    place-items: center;
    height: calc(100vh - 5em);
}
a{
    text-decoration: none;
}
.content{
    height: calc(100vh - 5em);
    padding-left: 5em;
}

.header_admin {
    position: sticky;
    top: 0;
    height: 5em;
    /* width: 100%; */
    background-color: hsl(var(    --background-secondary-dark));
    color: white;
}