* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Open Sans";
}

.fondo {
    width: 100%;
    height: 600px;
    
    background: url(imagenes/Fondo\ portafolio.png);
    background-size: cover;

}

.container1 {
    width: 80%;
    max-width: 1000px;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center ;
    justify-content: space-between;
    
    /* border: solid 2px #000; */
}
nav {
    align-self: flex-end;
    display: flex;
    gap: 40px;
    margin-top: 40px;
}
nav a{
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    &:hover {
        border-bottom: 2px solid #fff;
    }

}

.caja {
    border: solid 2px #ffffff83;
    border-radius: 5px;
    padding: 0 25px;
    padding: 25px;

    color: #fff;

}
.caja h1 {
    font-size: 50px;
    font-weight: 300;
    text-align: center;
}

.caja h2 {
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 0;
    margin-top: 10px;
}

.foto   {
    width: 150px;
    height: 150px;
    background: url(imagenes/oso.png);
    background-size: cover;
    background-position: center ;
    border-radius:  75px;
    border: solid 2px #ffffff;
    position: relative;
    top: 75px;

}




.container {
    width: 80%;
    max-width: 1000px;
    margin: auto;
    margin-top: 100px;
}

.acercaDe h2 {
    color: #DD820D;


}
 h2 {

    font-size: 34px;
    font-weight: 350;
    text-align: center;
    margin-bottom: 30px;

}

 p {
    font-size: 18px;
    font-weight: 550;
    color: #5a5a5a;
    text-align: center;
    line-height: 25px;
}

.resaltado {
    color: #125BE8;
}

.trabajos {
    background: #eaeaea;
}

.trabajos h2 {
    color:  #323068;
    margin: 40px 0;
    padding-top: 40px;
}

.cajaTrabajos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.trabajo {
    width: 23%;
    margin-bottom: 40px;
}

.trabajo img {
    max-width: 100%;
    border-radius: 5px;
}

h3 {
    color: #3985EA;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
}

.trabajo p {
    font-size: 14;
    color: #5a5a5a;
    font-weight: 350px;
    text-align: center;
    margin: 10px 0;
}


/* Form */

 .contacto h2 {
    color: #3985EA;
    font-size: 34px;
    font-weight: 350;
    text-align: center;
    margin-bottom: 30px;
}
.contacto .container {
    margin-top: 40px;
}

form {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

input, textarea {
    padding: 15px 20px;
    border-radius: 5px;
    border:  2px solid #cecece;
    color: #1d1b1b;
    line-height: 18px;
    font-weight:300px;
    font-size: 16px;
    outline: none;
    &:focus{
        border:2px solid #DD820D;
    }
}


input {
    width: 48%;
    margin-bottom: 15px;
}

textarea {
    width: 100%;
    margin-bottom: 15px;
    min-height: 100px;
    max-height: 200px;
    min-width: 100%;
}

.boton {
    margin: auto;
   background: #3985EA;
   color: white;
   border: none;
   font-size: 18px;
   font-weight: 350;
   width: 100px;
   text-align: center;
   cursor: pointer;
   &:hover {
    background: #125BE8;
   }
   &:focus{
    border:none;
}
}