/**  import of the fonts **/ 
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');


/** vars in general **/
:root{
    --blue:#0029FF;
    --trans:all 400ms ease;
    --mon:'Montserrat', sans-serif;;
}

/** general info main for each site **/
body::-webkit-scrollbar{
    display: none;
}

*{
    margin: 0;
    transition: all 300ms ease;
}

html{
    scroll-behavior: smooth;
}


.acomodoUno{
    flex-direction: row-reverse;
}

.acomodoDos{
    flex-direction: row;
}

.flexContOne{
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flexContTwo{
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container{
    width:100%;
    height: auto;
    padding: 50px 100px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.picture{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
    position: relative;
    width: 50%;
    height: 500px;
    border-radius: 20px;
}

/*  pictures */
.picOne{
    background-image: url(img/niñoCuatro.jpeg);
}

.picTwo{
    background-image: url(img/kenSanta.jpg);
}

.fexCont{
    width: 50%;
}

.title{
    font-family: var(--mon);
    font-weight: 900;
    font-size: 40px;
    width: 400px;
}

.text{
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    margin-top: 10px;
    width: 400px;
}

.links{
    display: flex;
    justify-content:flex-start;
    width: 400px;
    height: 70px;
    margin-top: 12px;
}

.linkCirlce{
    width: 44px;
    height: 44px;
    display: flex;;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: solid 3px black;
    margin-right: 20px;
    transition: all 400ms ease;
    opacity: 50%;
}

.linkCirlce:hover{
    transition: all 400ms ease;
    transform: scale(1.1);
    opacity: 100%;
}

.socialIconTest{
    width: 25px;
    height: 25px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.insta{
    background-image: url(img/instagram.png);
}

.youtube{
    background-image: url(img/tik-tok.png);
}

@media (max-width:1100px) {
    .title{
        width: 300px;
        font-size: 30px;
    }

    .text{
        width: 300px;
    }

    .links{
        width: 300px;
    }
}

@media (max-width:880px) {
    .title{
        width: 500px;
        font-size: 30px;
    }

    .text{
        width: 500px;
    }

    .links{
        width: 500px;
    }

    .fexCont{
        width: 500px;
    }

    .container{
        flex-direction: column;
    }
    
    .picture{
        width: 500px;
        margin-bottom: 10px;
        height: 300px;
    }
}

@media (max-width:550px) {
    .title{
        width: 300px;
        font-size: 30px;
    }

    .text{
        width: 300px;
        font-size: 15px;
    }

    .links{
        width: 300px;
    }

    .fexCont{
        width: 300px;
    }

    .container{
        flex-direction: column;
    }
    
    .picture{
        width: 300px;
        margin-bottom: 10px;
        height: 300px;
    }
}