@font-face{
    font-family: "monserrat";
    src:url(letras/Montserrat/static/Montserrat-Bold.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #595843; 
    font-family: "monserrat"; 
}
h1{
    color: #73262C;
    font-size: 120px;
    text-align: center;
    margin-top: 30px;
    text-shadow: 2px 2px black;
}
.contenido_principal{
    width: 1400px;
    height: 2200px;
    display: flex;
    flex-direction: column;
    gap: 40px; /* opcional, separación entre bloques */
}
.mifoto{
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-left: 115px;
    margin-top: 40px;
    border: 1px solid black;
    box-shadow: 3px 3px 10px 5px;
}
.parrafos{
    width: 700px;
    height: 500px;
    margin-left: 100px;
    margin-top: 50px;
}
.bloque_superior {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
}
.habilidades{
    display: flex; 
    flex-direction: column; 
    align-items: center;    
    justify-content: center; 
    width: 1300px;
    margin-left: 130px; 
    height: 1500px;
    justify-content: space-between;
    align-items: center;
}
.tituloh{
    font-size: 70px;
    text-align: center;
    color: #73262C;
    text-shadow: 2px 2px black;
    margin-bottom: 30px;
}
.habilidad img{
    width: 120px;
    height: 120px;
    object-fit: cover;
    filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.6)); /* CON FILTER DROP SHADOW PUEDO PONER SOMBRAS SOBRE UN ELEMENTO .PNG*/
}
.habilidad{
    width: 1000px;
    height: 170px;
    background-color: #73262C;
    margin: 20px;
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 3px 3px 10px 5px;
    opacity: 0;
    transform: translateX(-150px);
    transition: all 0.6s ease-out;
}
.habilidad.visible {
    opacity: 1;
    transform: translateX(0);
}
.habilidad p {
    width: 700px;
}

@media (max-width:768px){
    body{
        height: 2850px;
    }

    h1{
        font-size: 80px;
        text-align: start;
        width: 50%;
        margin-left: 30px;
    }
    .contenido_principal{
        height: 800px;
    }
    .mifoto{
        width: 300px;
        height: 300px;
        object-fit: cover;
        justify-content: start;
        align-items: start;
        margin-left: -170px;
    }
    .parrafos p{
        margin-left: -450px;
        width: 300px;
    }
    .parrafos{
        margin-top: 370px;
    }
    .habilidades{
        width: 200px;
        justify-content: start;
        align-items: start;
        margin-left: 10px;
    }
    .habilidades h2{
        font-size: 50px;
        margin-left: 20px;
        margin-top: 450px;
    }
    .habilidad{
        width: 200px;
        margin-top: 5px;
        margin-left: 75px;
    }
    .habilidad img{
        width: 100px;
        height: 100px;
        object-fit: cover;
    }
    .pparrafos{
        display: none;
    }
    #tail img{
        width: 140px;
        height: 85px;
        object-fit: cover;
    }
}


