*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.body{
    background-color: #ededed ;
    flex-wrap: wrap;
    width: 100%;
}

.header {
    background-color: #ab90b6 ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    padding: 5px 10%;
    width: 100%;
}

.bars-cont i{
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    display: none;
}
.bars-cont button{ /*copia*/
    border: none;
    background: none;
}
.cerrar{ /*copia*/
    font-size: 40px;
    display: none;
}
.cerrar button{
    border: none;
    background: none;
    color: #fff;
}
.header.logo{
    justify-content: left;
}

.header .logo img{
    height: 10.6rem;
    width: auto;
    cursor: pointer;
}
.header .nav-links{
    list-style: none;
    cursor: pointer;
    margin-right: 100px;
}

.header .nav-links li{
    display: inline-block;
    margin-left: 40px;   
}

.header .nav-links a{
    text-decoration: none;
    color: #fff;
    font-size: 25px;
}

.header .nav-links li:hover{
    transform: scale(1.1);
    
}

.header .nav-links a:hover{
    color: #340034 ;
}

.header .btn{
    margin-right: 90px;
    margin-left: 20px;
}

.header .btn button{
    font-size: 1.6rem;
    color: #ab49ab;
    background: #fff;
    padding: 9px 25px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 1 ease 1;
}

.header .btn button:hover{
    color: #fff;
    background-color:#340034 ;
    transform: scale(1.1);
}
/* hasta aca es la navbar */
.article .section .text h1{
    color: #340034;
    align-items: center;
    margin-top: 5rem;
    margin-left: 2.5rem;
    margin-bottom: .6rem;
    font-size: 3rem;
}
.title span{
   -webkit-text-fill-color: transparent;
   -webkit-text-stroke: 2px #340034;
   font-weight: 10rem;
   
}

.parrafo{
    color: #340034;
    margin-left: 2.5em;
    font-size: 1.25em;
    margin-top: 1.25em;
}

.section{
    position: relative;
    height: 100vh;
}



.imagen img {
    position: absolute;
    right: 5%;
    top: 35%;
    transform: translateY(-50%);
    height: 70%;
    width: 40%;
    border-radius: 5px;
    border: 2px solid #340034;
    opacity: 0;
    animation: aparecer 1s forwards;
}

@keyframes aparecer{
    from{
        opacity: o;
    }
    to{
        opacity: 1;
    }
}
@keyframes desaparecer{
    from{
        opacity: 1;
    }
    to{
        opacity: 0;
    }
}
/* Aca empieza el footer */

.footer .pie .container{
    display: flex;
    background-color: #ab90b6;
    padding: 40px;
}

.footer .pie .container li{
    margin-left: 20px;
    list-style: none;
}

.footer .pie .container a{
    text-decoration: none;
    color: #fff;
    padding: 30px;
    font-size: 1.25rem;
    
}

.footer .pie .container i{
    margin-left: 5px;
    font-size: 25px;
}

.footer .pie .container .ig{
    margin-top: -3px;
}

.footer .pie .container li:hover{
    transform: scale(1.1);
}

.footer .pie .container a:hover{
    color: #340034;
}

.derechos{
    color: #340034;
    align-items: center;
    background-color: #ab90b6;
    margin-left: 60%;
    margin-top: -60px;
    font-size: 20px;
    
}

/*responsive desing */

@media (max-width: 1400px){
    .section{
        display: inline-block;
    }
    .imagen img{
        position: absolute;
        top: 70%;
        left: 10%;
        align-items: center;
        width: 100%;
        height: 400px;
        bottom: 25%;
    }
}
@media (max-width: 1024px){
    .imagen img{
        height: 300px;
        position: absolute;
        left: 40px;
        width: 600px;
    }
    .header{
        width: 130%;
    }
    .bars-cont i{/*copia*/
        display: block;
    }
    .cerrar{ /*copia*/
        margin-left: 230px;
        z-index: 100;
        display: block;
        color: #340034;
    }
    .navbar{ /*copia*/
        position: absolute;
        opacity: 0;
        visibility: hidden;
        top: 0;
        right: -270px;
        width: 300px;
        height: 700px;
        background-color: #340034;
        justify-content: space-between;
        z-index: 100;
        transition: .8s ease;
        font-size: 60px;
    }
    .navbar.visible{ /*copia*/
        visibility: visible;
        opacity: 1;
    }
    .nav-links{/*copia*/
        flex-direction: column;
        align-items: end;
        padding: 0;
        margin: 0;
        
    }
    .nav-links a{
        padding: 0px;
        margin-bottom: 0px;
        gap: 0px; 
    }
    .navbar .nav-links .btn button{
        color: #340034;
    }
    .footer .pie .container{
        height: 130px;
        
        width: 130%;
    }
    .derechos {
        margin-left: 90px;
        position: absolute;
        top: 810px;
    }
}
@media (max-width: 733px){
    .imagen img{
        height: 200px;
        position: absolute;
        width: 600px;
        top: 450px;
        
    }
    .header{
        width: 750px;
        margin-right: 90px;
    }
}
@media (max-width: 733px){
    .imagen img{
        height: 300px;
        position: absolute;
        top: 500px;
        bottom: 200px;
        margin-bottom: 100px;
    }
}
@media (max-width: 768px){
    .header{
        width:900px ;
        }    
    .footer .pie .container{
        flex-direction: column;
        height: 200px;
        margin-top: 100px;
        margin-bottom: 0;
        width: 900px;
    }
    .navbar{ /*copia*/
        height: 900px;
        position: absolute;
        left: 550px;
    }
    .container li{
        padding: .5px;
        margin-bottom: 10px;
    }
    .derechos{
        top: 990px;
    }
}
@media (max-width: 455px) {
    .footer .pie .container {
        position: absolute;
        top: 900px;
        height: 800px;
    }
   
    .derechos{
        top: 990px;
        position: absolute;
        margin-top: 530px;
        font-size: 40px;
        margin-left: 110px;
    }
    .navbar{ /*copia*/
        height: 900px;
        position: absolute;
        left: 570px;
    }
    .footer .pie .container a{
        padding: 40px;
        font-size: 40px;
        
    }
    .footer .pie .container li{
        padding: 20px;
    }
}
@media (max-width: 320px) {
    
    
}
