
 /* --- QUIEN HABLA DE TI --- */
 :root{
    --light:rgb(255, 243, 232);
 }

*{
    margin:0;
    padding: 0;
    font-family: "IBM Plex Mono";
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
    overflow-y: scroll;
    
    box-sizing: border-box;
    font-size: 62.5%;
    overflow-x: hidden;
    margin:0;
    padding: 0;
    min-width: 100%;
}

body {
    background-color: rgb(30,30,30);
    font-family: "Raleway";
}

.nav-back{
    position: fixed;
    width: 35px;
    height: 35px;
    top: 10px;
    left: 10px;
    z-index: 5;
    cursor: pointer;
}

.container{
    max-width: 1400px;
    margin: 0 auto;
}

.header{
    width: 85%;
    margin: 8rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    background-color: rgb(28,28,28);
    border-radius: 5px;
}
.titulo {
    font-size: 4.5rem;
    font-family: "Liberation Mono";
    font-weight: 500;
    color: var(--light);
    width: 50%;
    padding-left: 40px;
    border-left: 5px solid var(--light);
    border-top: 5px solid var(--light);
    border-radius: 2px;
    display: flex;
    align-items: center;
}

.texto-presentacion{
    
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    border-right: 5px solid var(--light);
    border-bottom: 5px solid var(--light);
    border-radius: 2px;
}
p{
    color: var(--light);
    font-size: 18px;
    font-weight: 300;
    text-align: left;
    margin-bottom: 1rem;
    line-height: 1.8rem;
}

.galeria{
    width: 95%;
    margin: 10px auto;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgb(24,24,24);
}

img{
    height: auto;
    width: 100%;
    object-fit: contain;
    border-radius: 3px;
}

.img1{
    margin-bottom: 40px;
    width: 39.2%;
    padding: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img2{
    margin-bottom: 40px;
    width: 59%;
    padding: 3%;
    display: flex;
    justify-content: center;
    align-content: center;
}

.footer{
    width: 90%;
    padding: 3%;
    margin: 0px auto;
    margin-bottom: 50px;
    background-color: rgb(28,28,28);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.footer .texto-fin{
    text-align: center;
    color: rgb(230,230,230);
    font-size: 18px;
}
.footer .video-final{
    display: flex;
    justify-content:center;
    padding: 2%;
    width: 50%;
}

.footer .video-final iframe{
    object-fit: contain;
}

.separation{
    display: none;
    visibility: hidden;
}

/*RESPONSIVE*/

@media (max-width:850px){
    .header{
        flex-direction: column;
        }
    .titulo{
        width: 100%;
        text-align: right;
        justify-content: flex-end;
        padding: 40px;
        font-size: 3.5rem;
    }
    .texto-presentacion{
        width: 100%;
        font-size: 16px;
    }
    
    .img1{
        margin: 5px auto;
        width: 80%;
    }
    .img2{
        margin: 5px auto;
        width: 80%;
        padding: 2%;
    }
    
    .galeria{
        flex-direction: column;
    }
    .line-white{
        border: 2px solid rgb(150,150,150);
        background-color: rgb(150,150,150);
        border-radius: 5px;
        width: 50%;
        margin: 30px auto;
}
    .separation{
    display:block;
    visibility: visible;
    border:2px solid rgb(210,210,210);
    border-radius: 5px;
    background-color: rgb(210,210,210);
    margin: 8% auto;
    width: 80%;
}
}
