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

.logo{
    width: 60px;
    gap: 10px;
}
/*Estilo para el nav*/
.container-fluid{
    background: linear-gradient(#414b9e, #9792cb, #aa74a0);
}
/*estilos de botones*/
button{
    margin: 25px;
}
.botones{
    text-align: center;
}
/*estilos del body*/
body{
    background: linear-gradient(#545959,#0c0d0c, #d7d9d7, #f2a950, #d98c4a, #0c0d0c, #cfc7c7);
}
.destacado{
    text-align: center;
    margin-top: 50px;
}
h1{
    text-align: center;
    text-decoration: overline;
    color: #fff;
}
h2{
    text-align: center;
    margin-top: 80px;
    margin-bottom: 60px;
    color:#fff;
    text-decoration: overline;
}
h3{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}
.texto, p{
    text-align: center;
    margin-top: 20px;
    padding: 30px;
}
.img-principal {
    width: 100%;
    max-width: 1250px;
    height: auto;
    object-fit: contain;
}

.chat-body{
    text-align: center;
}
.texto-color{
    color: #fff;
}
/*estilo imagenes carrusel*/
.carousel-inner{
    padding: 20px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
/*estilos footer*/
.footer-img{
    width: 100%;
    text-align: center;
    margin-bottom: -50px;
}
footer{
    text-align: center;
    text-decoration: wavy;
    margin-top: 65px;
}
/*estilos para media desktop*/
@media screen and (min-width: 768px) and (max-width: 1023) {
    .container, .carousel-inner, .footer-img {
    display: grid;
    }
}

/*estilos para media mobile*/
@media screen and (min-width: 768px) and (max-width:767px) {
    .container, .carousel-inner, .footer-img {
    display: grid;
    }
}