:root {
    /* VARIABLES MENU */
    --fontmenusize: 1.3em;
    --paddingMenu-li: 0.5em 0.1em 0.5em 0em;
    --paddingMenu-a: 1em 0.3em 1em 0.3em;
    --fontcolorMenu: rgb(3, 0, 56);
    --boderRadiusMenu-a: 0.4em;
}


* {
    margin: 0;
    border: 0;
    border-style: none;
}

body {
    background-color: white;
    font-family: Cambria,'Times New Roman', Times, serif;
    
}

.topnav {
    z-index: 100;
    background: rgb(3, 0, 56);
    background: -moz-linear-gradient(180deg, rgba(3, 0, 56, 1) 0%, rgba(0, 0, 98, 1) 3%, rgba(0, 43, 209, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(3, 0, 56, 1) 0%, rgba(0, 0, 98, 1) 3%, rgba(0, 43, 209, 1) 100%);
    background: linear-gradient(180deg, rgba(3, 0, 56, 1) 0%, rgba(0, 0, 98, 1) 3%, rgba(0, 43, 209, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#030038", endColorstr="#002bd1", GradientType=1);
    height: 3.5em;
    width: 100%;
    position: fixed;
    text-align: right;
}

.topnav .Menu {
    height: 100%;
    margin-right: 0.9em;
}

.topnav .Menu .Menu-li {
    display: inline-block;
    font-size: var(--fontmenusize);
    padding: var(--paddingMenu-li);
}

.topnav .Menu .Menu-li .Menu-a {
    border-radius: --boderRadiusMenu-a;
    color: white;
    padding: var(--paddingMenu-a);
    text-decoration: none;
    /* display: none; */
}

.topnav .Menu .Menu-li .Menu-a:hover {
    background: var(--fontcolorMenu);
}

.topnav .Menu .icon {
    display: none;
    color: white;
    font-weight: bold;
    font-size: 2.6em;
    right: 10px;
    position: absolute;
}



/* reslcion para dispositivos */
@media (max-width: 700px) {

    body {
        font-size: 10px;
    }

    .topnav {
        height: 5em;
        width: 100%;
        position: sticky;
    }

    .topnav .Menu {
        height: 2.9em;
        margin-right: 10%;
    }

    .topnav .Menu .Menu-li {
        display: none;
    }

    .topnav .Menu .icon {
        display: block;
        color: white;
        font-weight: bold;
        font-size: 3.6em;
        position: absolute;
        right: 0.2em;
        bottom: 0.1rem;
    }

    .topnav.responsive {
        height: 100%;
        position: sticky;
    }

    .topnav.responsive .Menu {
        height: 500px;
        margin-right: 10%;
    }

    .topnav.responsive .Menu .Menu-li {
        display: block;
        text-align: center;
        font-size: 1.3em;
        padding: 0.5em 0.1em 0.5em 0em;
        list-style: none;
        border-bottom: 0.2em solid white;
        border-radius: 10%;
    }

    .topnav.responsive .Menu .Menu-li:first-child {
        margin-top: 0em;
        padding-top: 4.5em;
    }

    .topnav.responsive .Menu .Menu-li .Menu-a {
        display: block;
        border-radius: 0.4em;
        color: white;
        padding: 0.5em 0.3em 0.5em 0.3em;
        text-decoration: none;
    }

    .topnav.responsive .Menu .Menu-li .Menu-a:hover {
        background: rgb(3, 0, 56);
    }

    .topnav.responsive .Menu .icon {
        color: white;
        font-weight: bold;
        font-size: 3.6em;
        position: absolute;
        right: 0;
        top: 0;
    }
}