.navbar{
    padding: 2rem;
    background-color: #f5f6f7;
}

.navbar-collapse{
    align-items: center;
    justify-content: flex-end;
}

/* Estilos generales */
section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1{
    font-size: 2.5rem;
    font-family: "Rubik Dirt", system-ui;
  font-weight: 400;
  font-style: normal;
}

.seccion-oscura{
    color: white;
    background-color: #1b1b32;
}

.seccion-titulo{
    font-size: 2rem;
    padding: 15px 0;
    font-family: "Rubik Dirt", system-ui;
}

.seccion-texto{
    font-size: 1.2rem;
}

.seccion-clara{
    color: black;
    background-color: white;
}

.seccion-descripcion{
 font-size: 1.2rem;
 color: #584e4e; 
}

.btn-info{
    font-size: 1.1rem;
    margin: 20px;
}

.texto-negro{

}

.texto-blanco{

}



/* Hero */
.hero{
    background-color: #f5f6f7;
    min-height: 450px;
    text-align: center;
}

.hero-principal{
    padding: 3rem;
}


.hero-principal h2, h3{
    font-size: 1.5rem;
    color: #615151;
}

.hero-imagen-desarrollador{
    width: 200px;
    height: 200px;
    /* border-radius: 50%; */
    margin: 20px;
}

/* Sobre Mi */
.sobre-mi{
    height: 500px;
    padding: 10px;
}

.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: #1b1b32;
}

.experiencia-titulo{
    font-size: 25px;
    font-weight: bold;
    margin: 10px 0;
}

.experiencia i {
    font-size: 2.5rem;
    color: #7ade30;
    padding: 9px 19px;
    background-color: #0a0a23;
    border-radius: 50%;
}

.badges-contenedor{
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.badge {
    margin: 5px;
}

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

.proyectos-recientes img{
    height: 100%;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    display: block;
    transition: all 0.2s ease;
}

.proyectos-conteneder{
    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{
    position: relative;
}

.proyecto:hover img{
    opacity: 0.2;

}

.proyecto:hover .overlay{
    opacity: 1;
}

.contacto{
    margin-top: 40px;
}

.contacto .container{
    max-width: 1100px;
    min-height: 200px;
    padding: 20px;
}

.contacto .rectangulo{
    margin-top: -5rem;
    background-color: rgb(13, 110, 253);
    border-radius: 10px;
    box-shadow: 0px 1px 4px 1px white;

}

.contacto .row{
    width: 100%;
    display: flex;
    align-items: center;
}


.contacto .descripcion{
    color: white;
    font-size: 1.2rem;
}

.contacto button{
    color: white;
    font-weight: bold;
    padding: 1.25em 2em;
    background-color: transparent;
    border-radius: 100px;
    border: 2px solid white;
    transition: all 0.2s ease-in-out;
}

.contacto button:hover{
    color: black;
    background-color: white;
}

.contacto button:hover i{
    color: black
}

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

/* Footer */
footer{
    min-height: 500px;
}

.footer-logo{
    height: 80px;
    width: 80px;
    margin: 10px;
}

.footer-texto{
    font-size: 1.5rem;
    padding: 20px;
    margin-bottom: 30px;
    font-family: "Quicksand", sans-serif;
}

.iconos-redes-sociales a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    margin: 10px;
    border: 2px solid white;
    border-radius: 50%;
    transition: all 0.2s ease-in;
  }
  
  .iconos-redes-sociales i {
    color: white;
    font-size: 1.5rem;
    transition: all 0.2s ease-in;
  }
  
  .iconos-redes-sociales a:hover {
    background-color: white;
    border: 2px solid rgb(13, 110, 253);
  }
  
  .iconos-redes-sociales a:hover i {
    color: black;
  }

.derechos-de-autor{
    font-size: 15px;
  color: #aeaeae;
  padding: 20px;
}

@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 i{
        font-size: 40px;
    }
    .overlay p{
        font-size: 18px;
    }
}