
/* Barra de navegacion */
.navbar-brand img{
    height: 65px;
    margin-left: 60px;
 }
.navbar{
    padding: 2px;
    background-color:aliceblue;
    
}

.navbar-collapse{
    margin-right: 60px;
    align-items: center;
    justify-content: space-between;
}

/*Estilos Generales*/

section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
h1{
    font-size: 2.5rem;
    font-family: 'Dancing Script', cursive;
}
.seccion-oscura{
    background-color:aliceblue;
}
.seccion-clara{
    color: black;
    background-color:white;
}
.seccion-titulo{
    font-size: 2rem;
    padding: 15px 0;
    font-family: 'Dancing Script', cursive;
}
.seccion-descripcion{
    font-size: 1.2rem;
    color: #584e4e;
}
.seccion-texto{
    font-size: 1.2rem;
}
.btn-info{
    font-size: 1.1rem;
    margin: 20px;
    font-weight: bold;
}
.texto-negro{
    color: black;
}
.text-blanco{
    color: white;
}

/*seccion hero*/
.hero{
    min-height: 450px;
    text-align: center;
}
.hero-principal{
    padding: 3rem;
}
.hero-foto-perfil{
    height: 195px;
    width: 175px;
    border-radius: 50%;
    margin: 20px;
}
.hero-principal h2{
    font-size: 1.5rem;
    color: #615151;
}
.hero-inferior-imagen{
    border-radius: 50px;
    margin: 1px;
    height: 145px;
    width: 225px;
}

    /*Sobre mi*/
.sobre-mi{
    padding: 10px;
    height: 500px;
    margin: 17px;

}   
.sobre-mi .contenedor{
    max-width: 600px;
    text-align: center;
}         

     /*Experiencia*/
.experiencia{
    padding: 40px 40px 60px 40px;
}
.experiencia .columna{
    padding: 20px;
    border: 2px solid #8080804d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:space-evenly;
    transition: all 0.2s ease-in;
}
.experiencia .columna:hover{
    color: white;
    background-color:cornflowerblue;
}

.experiencia-titulo{
    font-weight: 25px;
    font-weight: bold;
    margin: 10px 0;
}
.experiencia i{
    font-size: 2.5rem;
    color: #7ade30;
    background-color: #0a0a23;
    padding: 2px 10px;
    margin: 15px;
    border-radius: 50%;
}
.badges-contenedor{
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}
.badge{
    margin: 5px;
}

  /*Proyectos*/
.proyectos-recientes{
    padding: 40px;
}

.proyectos-contenedor{
    padding-top: 60px;
    margin-bottom: 40px;
}

.proyectos-recientes img{
    height: 100%;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    display: block;
    transition: all 0.2s ease;
}
.proyectos-contenedor{
    padding-top: 60px;
    margin-bottom: 40px;
}
.proyecto{
    position: relative;
}
.overlay{
    transition: all 0.2s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.overlay p{
    font-size: 25px;
    font-weight: bold;
    margin-bottom:0 ;
}
.proyecto:hover img{
    opacity: 0.2;
}
.proyecto:hover .overlay{
    opacity: 1;
}
.overlay .iconos-contenedor{
    display: flex;
}
.overlay i{
    color: black;
    font: 60px;
    margin: 10px;
    font-size: 2.5rem;
}

/* Contacto*/
.contacto .container{
    max-width: 1100px;
    min-height: 200px;
    padding: 20px;
}
.contacto .rectangulo{
  margin-top: -3rem;
  background-color: rgb(13,110,253);
  box-shadow: 0px 1px 4px 1px white;
  border-radius: 10px
}
.seccion-azul{
    background-color: rgb(138, 182, 249);
}
.contacto .row{
    width: 100%;
    display: flex;
    align-items: center;
    color: whitesmoke;
}
.contacto .descripcion{
    color:white;
    font-size: 1.2rem;
}
.contacto button{
      color: white;
      font-weight: bold;
      background-color: transparent;
      border: 2px solid white;
      padding: 1.25em 2em;
      margin: 10px;
      border-radius: 100px;
      transition: all 0.2s ease-in-out;
}
.contacto button:hover {
    background-color: whitesmoke;
    color: black;
}

.contacto button i{
    color: white;
    font-size: 1.3rem;
    transition: all 0.2s ease-in-out;
}
.contacto button:hover i{
    color: black;
}


/*Media Query*/
@media screen and (max-width:767px){
    .navbar-brand{
        display: none;
    }
}

@media screen and(min-width:700px) {
    .hero-inferior-imagen{
        max-width: 600px;

    }
}

@media screen and (max-width:400px){
    .overlay p{
        font-size: 18px;
    }
    .overlay i{
        font-size: 40px;
    }
}