@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
/* se importa la url para el estilo de la letra y  se ajusta la pagina para utilizarla en su totalidad */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #323232;
}

h1{
    color: aliceblue;
}
.vista1{
    min-height: 90vh;
    width: 100%;
    overflow: hidden;
    height: 90vh;
    background-color: #DDD0C8;
}
/* se centran las imagenes y texto en esta primera vista de la pagina */
.nombre{
    justify-items: center;
    padding: 20px;
    background-color: #323232;
    height: 10vh;
}
.redes{
    justify-content: center;
    gap: 70px;
    display: flex;
    padding: 50px;
    min-height: 20vh;
}
.redes img{
    width: 50px;
}
.about_me{
    display: flex;
    height: 30vh;
    min-height: 40vh
}
/*  se aplican estilos a las fotos texto y sus contenedores */
.foto{
    width: 30%;
    margin: 0px 0px 0px 70px;
}
.foto img{
    width: 200px;
    height: 250px;
    border-radius: 50%;
    border-width: 5px;
    border-style: solid;
    border-color: #323232;
}
.texto_presentacion{
    width: 70%;
    box-shadow: 10px 10px 10px 13px #323232;
    margin: 0px 70px 0px 0px;
    border-radius: 20px;
    justify-items: auto;
    padding: 30px;

}
.skills{
    min-height: 30vh;
    background-color: #323232;
    padding: 20px;
    margin: 50px 0px 0px 0px;
    align-items: center;

}
.skills h3{
    color: aliceblue;
    font-size: 1.875rem ;


}
/* se agregan las iamgenes de los lenguajes y se organizan en base a preferencias */
.titulo_lenguajes{
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;

}
.skills img{
    width: 150px;
}
.languages{
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: center;


}
.barra_navegacion{
    background-color: #323232;
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 90px;
}
.barra_navegacion a{
    color: #323232;
    border-radius: 10px;
    background-color: #DDD0C8;
    margin: 15px;
    padding: 4px;

}
/*  inicia la segunda parte de la pagina y se organza su tamaño y estilo */
.parte2{
    min-height: 80vh;
    background-color: #DDD0C8;
}
.parte2 h1{
    color: #323232;
    text-align: center;
    padding: 20px;
    font-size: 40px;
}
/* se organizan los 3 contenedores que contrandran proyectos diferentes y se les añaade color y tamaño */
.proyectos{
    display: flex;
    gap: 50px;
}
.proyecto1{
    width: 30%;
    box-shadow: 10px 10px 10px 13px #323232;
    margin: 0px 70px 0px 0px;
    border-radius: 20px;
    justify-items: auto;
    padding: 30px;
    min-height: 50vh;
    align-items: center ;
    justify-content: center;
    align-items: center;
}
.proyecto1 img{
    width: 30%;

}
.proyecto2{
    width: 30%;
    box-shadow: 10px 10px 10px 13px #323232;
    margin: 0px 70px 0px 0px;
    border-radius: 20px;
    justify-items: auto;
    padding: 30px;
}
.proyecto2 img{
    width:40%;
    margin: 20px;

}
.proyecto3{
    width: 30%;
    box-shadow: 10px 10px 10px 13px #323232;
    margin: 0px 70px 0px 0px;
    border-radius: 20px;
    justify-items: auto;
    padding: 30px;
}
.proyecto3 img{
    width: 20%;
    margin: 20px;
/*  se organizan los estilos de los botones cuyo link dirige a los repositorios */
}
.proyecto1 .boton a{
    background-color: aliceblue;
    border-radius: 10px;
}

.proyecto1 .boton{
    text-align: center;
    padding: 50px;
}

.proyecto2 .boton a{
    background-color: aliceblue;
    border-radius: 10px;
}

.proyecto2 .boton{
    text-align: center;
    padding: 50px;
}

.proyecto3 .boton a{
    background-color: aliceblue;
    border-radius: 10px;
}

.proyecto3 .boton{
    text-align: center;
    padding: 50px;
}
.parte3{
    min-height: 60vh;
    background-color: #323232;
}
.parte3 h2{
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 40px;
    justify-content: center;
}
/*  se añade estilo al formulario juntos con su tamaño */
.formulario form{
    margin: 0 auto;
    width: 300px;
    border-color: #ffffff;
    border-style: solid;
    border-radius: 20px;
    padding: 10px;
}
.formulario input,textarea{
    outline: none;
    border: 0;
    width: 240px;
}
.field{
    border: solid 1px white;
    border-radius: 20px;
    padding: 10px;
    width: 240px;
}
.formulario p{
    color: #ffffff;
    margin: 10px;
}
.formulario{
    align-items: center;
    justify-content: center;
    align-content: center;
    justify-items: center;
    text-align: center;
}
/*  se organiza el estilo del boton del formulario */
.btn{
    border-radius: 20px;
    display: inline-block;
    padding: 20px 15px;
    text-decoration: none;
    text-shadow: 0 1px 0 #323232;
    min-width: 8vw;


}
.btn-green{
    color: #323232;
    background-color: #ffffff;
}
/*  se añaden dos estados de estilo al boton cuando el mouse esta sobre el boton y cuando se presiona */
.btn-green:hover{
    background-color: #323232;
    color: #ffffff;
}
.btn-green:active{
    background-color: #DDD0C8;
}


