/* Estilos generales */

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'montserrat alternates';
}

/* Estilos de la barra de navegaciÃ³n */
nav {
    background-color: #000;
    width: 100%;
    height: 53px;
    font-weight: normal;
    color: aliceblue;
    text-transform: uppercase;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.logo {
    height: 40px;
    margin-right: 10px;
    align-items: center;
}

nav ul {
    display: flex;
    margin-right: 20px;
    align-items: center;
}

nav ul li {
    display: inline-block;
    margin-right: 30px;
}

nav ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

a:hover {
    color: #0a7cff;
    transition: color 0.3s ease;
}

li:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

h2 {
    color: #0a7cff;
}

.system {
    color: aliceblue;
}
/* Estilos del pie de pÃ¡gina */
footer {
    background-color: rgb(0, 0, 0);
    color: rgba(255, 255, 255, 0.623);
    text-align: center;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logoblanco {
    width: 150px;
    margin-top: 10px; /* Ajustar este valor segÃºn sea necesario */
    margin-bottom: 0px; /* Ajustar este valor segÃºn sea necesario */
  
}

.text_footer {
    font-size: 15px;
    font-weight: lighter;
    margin-bottom: 10px; /* Ajustar este valor segÃºn sea necesario */
    margin-left: 40x;
    margin-right: 40px;
}

/* Estilos de la hamburguesa */
.checkbtn {
    font-size: 30px;
    color: #fff;
    margin-right: 20px;
    margin-top: 5px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

/* Estilos para pantallas medianas (max-width: 952px) */
@media (max-width: 952px) {
    .enlace {
        padding-left: 20px;
    }

    nav ul li a {
        font-size: 15px;
    }
}

/* Estilos para pantallas pequeÃ±as (max-width: 858px) */
@media (max-width: 858px) {
    .checkbtn {
        display: block;
    }

    ul {
        font-family: 'Karla';
        position: fixed;
        width: 107%;
        height: 90vh;
        background:  hsla(212, 100%, 52%, 0.952);
        top: 53px;
        left: 100%;
        text-align: center;
        transition: all 0.5s;
        flex-direction: column;
    }

    nav ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }

    nav ul li a {
        font-size: 20px;
    }

    li a:hover,
    li a.active {
        background: none;
        color: rgb(31, 30, 30);
    }

    #check:checked ~ ul {
        left: 0%;
    }

    footer {
        font-size: xx-small;
        
    }

    .text_footer {
        font-size: 10px;
    font-size: 10px;
    font-weight: lighter;
    margin-bottom: 10px; /* Ajustar este valor segÃºn sea necesario */
    margin-left: 20px;
    margin-right: 20px;
}

    }


body {
    background-color: rgb(31, 30, 30);
    font-family: 'Karla';
    text-align: left;
}

h4 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 50px;
    color: #0a7cff;
    font-weight: normal;
}

h3 {
    color: aliceblue;
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: lighter;
}

p {
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 80px;
    font-weight: lighter;
}

hr {
    margin-top: 90px;
    margin-bottom: 50px;
    background-color: rgb(58, 58, 58);
    height: 2px;
    border: none;
}

aside {
    margin-left: 5rem;
    margin-right: 30rem;
}


@media (max-width: 858px) {
    aside {
        margin-left: 2rem;
        margin-right: 3rem;
    }
    h4 {
        font-size: 30px;
    }
    h3 {
        font-size: 20px;
    }
    .insert {
        width: auto;
        height: 630px;
    }
    
}