
.navbar{
    padding: 2rem;
    background-color: #f5f6f7;
}

.navbar-collapse{
    align-items: center;
    justify-content: space-between;

}



.hero{
    background-color: #f5f6f7;
    min-height: 450px;
    text-align: center;
}

.hero-principa{
    padding:3rem;

}

.hero-imagen-desarrollador{
    width: 200px;
    height: 200px;
    
    margin: 25px;
    padding: 2px;
    border: 1px solid black;



}

.hero-interior-imagen{
    width: 300px;
    height: 300px;
    
    margin: 10px;
    padding: 2px;
    
}
 
.hero principal h2{
    font-size: 1.5rem;
    color: #615151;
}

section{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1{
    font-size: 2.5rm;
    font-family: "Rubik Dirt", system-ui, cursive;
}

.seccion-oscura{
    background-color: black;
    color: white;
}

.seccion-clara{

    color: black;
    background-color: white;
}

.seccion-titulo{
    font-size: 2rem;
    padding: 15px 0;
    font-family: "Rubik Dirt", system-ui, cursive;

}

.badges-contenedor{
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;

}
.badges{
    margin: 5px;
}
.seccion-texto{
    font-size: 1.5rem;

}

.seccion-descripcion{
    font-size: 1.2 rem;
    color: #584e4e;

}
.texto-negro{
    color:blank;

}

.texto-blanco{
    color: white;
}


.proyectos-recientes{
    padding: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;

    }

.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;

}

.overlay .iconos-contenedor{
    display: flex;
}

.overlay i{
    color: black;
    font-size: 60px;
    margin: 10px;
}

.proyecto:hover img{
    opacity: 0.2;
}

.proyecto:hover .overlay{
    opacity: 1;
}

.proyecto{
   
   
    position: relative;
}



.sobre-mi{
    height: 500px;
    padding: 10px;
}

.sobre-mi .contenedor{
    max-width:600px;
    text-align: center;

}

.experiencia{
    padding: 40px 40px 60px 40px;
}


.experiencia-totulo{
    font-size: 25px;
    font-weight: bold;
    margin: 10px 0;
}
.experiencia i{
font-size: 2.5rem;
color: #7ade30;
background-color: #0a0a23;
padding: 8px 19px;
border-radius: 50%;


}

.experiencia .columna{
    padding: 20px;
    border: 2px solid #8080804d;
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: space-between;
    transition: all 0.2s ease-in;

}
.experiencia .columna:hover{
    color: white;
    background-color: #1b1b32;
}

@media screen and (max-width: 767px){
    .navbar-brand{
        display: none;
    }
}   

@media screen and (min-width:700px){
    hero-interior-imagen{
        max-width:600px;
    }



}