* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    background-image: linear-gradient(135deg, #2148f7a6 0%, #ce1fb1 100%), url(archivos/ing-fondolila.jpg);
    background-attachment: fixed;
} 

h1 {
    color: #fff;
    font-family: 'Monoton', cursive;
    font-size: 65px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;

}
/* enlace arriba a la derecha para volver a inicio */
.enlace-volver {
    font-size: 15px;
    color: #fff;
}

.enlace-volver:hover {
    transition: 1s;
}
/* enlace arriba a la derecha ara ir a la siguiente seccion */
.ir-a {
    margin-left: -84%;
    color: #6cadf8;
    text-decoration: none;
}

.ir-a:hover{
    transition: 1s;
    color: black;
}
/* texto dentro de la barra de navegacion izquierda */
.nav-link {
    font-family: 'popins', sans-serif;;
}

.redes {
    color: blueviolet;
}

.redes:hover {
    transition: 1s;
    color: orangered;
}

.offcanvas-header{
    background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
}

.offcanvas-body {
    background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
}

/*inicio efecto vidrio */
.background-container {
    height: 500px;
    background-size: cover;
    display: flex;
    align-items: center;
}

.card-container {
    width: 80rem;
    height: 80rem;
    border: 2px solid #fafafa10;
    margin: 0 auto;
    border-radius: 10px;
}

.texto-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    color: #fff;
    text-transform:uppercase;
    padding: 50px;
}

.glass-effect {
    background: #0c0c0c10;
    backdrop-filter: blur(0.3rem);
    -webkit-backdrop-filter: blur(0.3rem);
}

/* proyectos y diseños */

.titulo-proyectos {
    padding-bottom: 10px;
    padding-top: 60px;
}

.proyecto {
    height: 500px;
    padding: 60px;
}

.botones-proyectos {
    display: flex;
    justify-content: space-around;
    padding-top: 30px;
}

.boton-proyecto{
    background-color: #6E36E6;
    padding: 10px;
    border-radius: 10px;
    border-style: none;
    color: rgba(157, 159, 163, 0.87);
    transition: .5s;
}

.boton-proyecto:hover {
    box-shadow: 0 0 10px 5px white;
    transition: .5s;
    color: #fff;
}




/* seccion responsive-------------------------------------------------------- */
@media screen and (max-width:1236px){
    .carousel-inner {
        width: 500px;
        height: 500px;
        margin-left: 270px;
        margin-top: 200px;
        margin-bottom: 100px;
        
        }
        .ir-a {
            margin-left: -20px;
        }

}

@media screen and (max-width:850px){
    h1 {
        font-size: 40px;
        padding-top: 100px;
    }

    .carousel-inner {
        margin-left: 150px;
        margin-bottom: 200px;
    }

    .el-span {
        display: none;
        
    }

    .imagenes-carrusel {
        width: 400px;
        height: 400px;
    }
    .ir-a {
        margin-left: -20px;
    }

}

@media screen and (max-width:600px){
    .imagenes-carrusel {
        width: 250px;
        height: 250px;
    }

    h1 {
        font-size: 35px;
    }

    .ir-a {
        margin-left: -20px;
    }
}

@media screen and (max-width:420px){
    .imagenes-carrusel{
        width: 200px;
        height: 200px;
    }

    h1 {
        font-size: 25px;
    }

    .carousel-inner {
        margin-left: 80px;
        margin-top: 50px;
    }

    .navbar-toggler {
        width: 20px;
        height: 20px;
    }

    .navbar-toggler-icon {
        display: none;
    }

    .carrusel {
        margin-top: 20px;
    }
}