* {
    margin: 0%;
    /*Elimina todo margen que trae por defecto*/
    padding: 0%;
    /*Elimina todo relleno que trae por defecto*/
    box-sizing: border-box;
    --font-family-sans-serif: "Nunito", sans-serif;
    font-family: "Nunito";

}

:root {
    --color_primario: #8527c3fd;
    --color_primario_suave: #8527c383;
    --color_blanco: #fff;
    --altura_header: 7rem;
    --padding_left_right: 2vw;
    --ancho_maximo: 1200px;
}

a {
    text-decoration: none;

}

ol,
ul {
    list-style: none;
}

.input_hamburguesa {
    display: none;
}

.input_hamburguesa:checked+.ul_links {
    height: calc(100vh - 8rem);
}

nav .logo {
    height: 6rem;
    /* margin: 1rem; */
    transition: 0.8s;
    padding: 0 var(--padding_left_right);
}

.header {
    background-color: white;
    height: 8rem;

}

.navbar {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    padding: 0 var(--padding_left_right);
}

.text-h {

    color: rgb(199, 113, 202);
    font-weight: bold;
}

.text-primary {
    font-size: 2.5rem;
}


.list_icon {
    cursor: pointer;
}

.ul_links {
    width: 100%;
    background-color: antiquewhite;
    position: absolute;
    top: 8rem;
    left: 0;
    overflow: hidden;
    transition: 0.5s;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    z-index: 1;
}



.link {
    font-size: 2rem;
    color: rgb(199, 113, 202);
    font-weight: bold;

}

@media (min-width: 801px) {
    .label_hamburguesa {
        display: none;
    }

    .ul_links {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        gap: 1rem;
        background-color: white;

    }

    .link {
        font-size: 1.5rem;
    }

    .links {
        font-size: 0.1rem;
        transition: all .3s;

    }

    .link:hover {
        color: black;
    }

    .navbar {
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        position: relative;
        padding: 0 1vw;
    }

    nav .logo {
        height: 6rem;
        transition: 0.8s;
    }
}


@media (max-width: 800px) {
    nav .text-primary {
        display: flex;
        font-size: 1.5rem;
        font-weight: bold;
        align-items: center;
    }

    nav .text-secundary {
        display: flex;
        font-size: 1rem;
        font-weight: bold;
        align-items: center;
        padding-top: 0;
    }

    .navbar {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        flex-wrap: nowrap;
        height: 100%;
    }

    nav .logo {
        height: 3rem;
    }



}

/* @media (min-width: 801px) {
    .label_hamburguesa {
        display: none;
    } */

/* 
.container_nav {
    display: block;
    background-color: white;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topnav {
    display: flex;
    text-decoration: none;
    align-items: center;
    color: rgb(199, 113, 202)
}

nav .navbar-nav {
    display: flex;
    flex-direction: row;
    font-size: 1rem;
    font-weight: bold;
    padding: 2rem;
    flex-wrap: wrap;
    align-items: center;

}

nav .logo {
    height: 6rem;
    margin: 1rem;
    transition: 0.8s;
}


nav a p {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

nav .text-primary {
    margin: 1rem;
    font-size: 3rem;
    font-weight: bold
}

nav .text-secundary {
    font-size: 2rem;
    font-weight: bold;
    padding-top: 0.7rem;
}

.navbar .navbar_nav .item {
    text-decoration: none;
    padding: 0.5rem;
    color: rgb(105, 209, 174);
    font-weight: bold;
    font-size: 1.5rem;

}

#actual {
    color: rgb(199, 113, 202);
    font-size: 2rem;
}

.navbar .navbar_nav .item:hover {
    color: rgb(199, 113, 202);
}

.logo:hover {
    transform: scale(1.2);
}

@media (max-width: 800px) {
    nav .text-primary {
        display: flex;
        font-size: 1.5rem;
        font-weight: bold;
        align-items: center;
    }

    nav .text-secundary {
        display: flex;
        font-size: 1rem;
        font-weight: bold;
        align-items: center;
        padding-top: 0;
    }

    nav {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    nav .logo {
        height: 3rem;
    }

    nav p {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .topnav {
        display: flex;
        flex-direction: row;
        text-decoration: none;
        justify-content: space-between;
    }

    nav .navbar_nav {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        font-weight: bold;
        padding: 0 1rem 0 1rem;
        justify-content: center;
    }

    .navbar .navbar_nav .item {
        text-decoration: none;
        padding: 0.5rem;
        margin: 0.5rem;
    }
} */