/* Estilos generales */

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

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

/* 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;
}

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

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;
}
h5 {
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: normal;
    color: #0a7cff;
}

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

/* Estilos del pie de pÃƒÂ¡gina */
footer {
    background-color: rgb(0, 0, 0);
    color: rgba(255, 255, 255, 0.623);
}

.text_footer {
    font-size: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: lighter;
}

/* Estilos de la hamburguesa */
.checkbtn {
    font-size: 30px;
    color: #fff;
    float: right;
    line-height: 15px;
    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 .5s;
        /* Cambia la direcciÃƒÂ³n de flexiÃƒÂ³n para hacer el menÃƒÂº vertical */
        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;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    

    
}

/* Estilos para pantallas pequeÃƒÂ±as (max-width: 858px) */
@media (max-width: 858px) {
    .insert {
        width: 90%; /* Cambiar el ancho para que se ajuste al tamaÃƒÂ±o de la pantalla */
        max-width: 100%; /* Establecer un ancho mÃƒÂ¡ximo para garantizar que no sobresalga */
        height: auto; /* Permitir que la altura se ajuste automÃƒÂ¡ticamente segÃƒÂºn el contenido */
        padding: 1rem; /* Reducir el relleno para ocupar menos espacio */
        margin: 20px auto; /* AÃƒÂ±adir margen para separar los elementos y centrarlos */
    }
}



.insert {
    border: 1px solid rgba(0, 3, 3, 0);
    width: 1000px;
    height: 600px;
    padding: 4rem;
  }
  aside {
    background-color: #1f1f1f;
    display: grid;
    justify-content: center;}
    