body{
    margin: 0;
    padding: 0;
    background-color: rgb(1, 85, 85);
    font-family: sans-serif;
}
header{
    width: 100%;
    height:120px;
    background-color:#333;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); 
  
    
}
.foto{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
.caja-foto{
   flex:  0 0 250px;
   height: 300px;
   background-color: rgb(1, 85,85);
   display: flex;
   justify-content: center;
   align-items: center;
   overflow: hidden;
   border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 238, 0, 0.4);

}
.caja-texto{
    flex: 1;
}
.uno{
    display:flex; /*iamgen y texto no al lado del otro*/
    align-items: center; 
    gap: 20px;/*espacio entre imagen y tezto*/
    margin: 20px auto;
    max-width: 900px;/*ancho maximo */
    background-color: color (1,85,85);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 238, 0, 0.4);

}
h1{
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    color: white;
    line-height: 75px;
    margin: 0;
}
h2{
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: white;
}
h3{

    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: white;
}
.texto-sobre-mi{
    font-size: 30px;
    color: white;
    line-height: 1.6;
}
.conocimientos{
    display: flex;
    justify-content: center;
    margin: 40px 0;
}
.caja-conocimientos{
    display: flex;
    gap: 40px ;
    background: color #1c1c1c;;
    padding: 30px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 238, 0, 0.4);
}
.skills{
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;


}
.skills img{
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

.skills p{
    margin:0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: sans-serif;
}
h6{
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: white;
}
.proyectos{
    display: flex;
    justify-content: center;
    margin: 40px 0;
}
.caja-proyectos{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(1, 85, 85);
    padding: 30px 50px;
    border-radius: 10px;
    box-shadow:0 4px 15px rgba(255, 238, 0, 0.4);
}
.proyecto{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    margin: 0 20px;
}
.proyectos img{
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}
.proyectos:hover{
    transform: scale(1.05);/*agranda un poco el elemnto*/
    box-shadow:0 6px 20px rgba(255, 238, 0, 0.6); /* agrega una sombra*/ 
}
.proyecto p{
     margin:0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: sans-serif;
}
footer{
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 50;
}
footer h4{
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: white;
}
.redes{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;

}
.redes img{
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}
nav{
    position: absolute;
    top: 10px;
    right: 20px;
}
nav ul li a{
    color: white;
    font-weight: bold;
}