/*Estilos de menu*/
@font-face {
    font-family: Estilo5;
    src: url(../fonts/Montserrat-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    justify-content: center;
}

header {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(50deg, #e6007e, #f39200);
    float: left;
    transition: all 300ms;
}

.move_content {
    right: 180px;
}

.container__header {
    max-width: 1200px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    padding: 0px 20px;
}

header .logo {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 40px;
}

.container__nav {
    position: relative;
    height: 100;
}

nav {
    height: 100%;
}

nav ul {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Estilo5;
   
}

nav ul li {
    margin: 0px 20px;
    list-style: none;
}

nav ul li a {
    color: white;
    font-size: 22px;
}

nav ul li a:hover {
    color: darkgray;
}

.nav_mod {
    height: 70px;
    box-shadow: 1px 1px 10px 0px linear-gradient(50deg, #e6007e, #f39200);
    background: linear-gradient(50deg, #e6007e, #f39200);
}

.btn__menu {
    width: 50px;
    height: 50px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background 300ms;
    display: none;
}

.btn__menu:hover {
    background:#e6007e;
}
/*Fin de los estilos de menu*/



/*Modo responsive del menu*/
@media screen and (max-width: 920px) {
    .container__nav {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .btn__menu {
        display: flex;
    }

    nav {
        height: 100%;
        background: linear-gradient(50deg, #e6007e, #f39200);
        position: fixed;
        top: 0;
        right: -300px;
        padding: 0 25px;
        transition: all 300ms;
    }

    .move_nav {
        right: 0px;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 20px 0px;
    }
}

    @media screen and (max-width: 760px) {
        .container__nav {
            display: flex;
            justify-content: center;
            align-items: center;
    }

        .btn__menu {
            display: flex;
    }

    nav {
        height: 100%;
        background: linear-gradient(50deg, #e6007e, #f39200);
        position: fixed;
        top: 0;
        right: -300px;
        padding: 0 7px;
        transition: all 300ms;
    }

    .move_nav {
        right: 0px;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 20px 0px;
    }
}
/*Fin del modo responsivo del menu*/