/*Secciones generales ==== Estilos con selectores de elementos*/
section{
  background-color: #eeeeee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

h1{
  font-size: 2.5rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
}

/*Navbar ==== Estilos para selectores de clase*/
.navbar{
    padding: 2rem;
    background-color: #eeeeee;
}

.navbar-toggler{
   background-color: #ffffff;
}

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

.txt-navbar{
  color: #000000;
  font-family: "Libre Baskerville", serif;
}

/*Sección "Perfil ==== Estilos para selectores de clase"*/
.perfil{
  padding: 2rem;
  min-height: 450px;
  text-align: center;
}

.perfil-superior{
  padding: 3rem;
}

.perfil-foto-superior{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 20px;
}

.perfil-superior h2{
  font-size: 1.5rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  color: #333333;

}

/*Sección "Sobre mí" ==== Estilos para selectores de clase*/
.sobre-mi {
  padding: 30px; 
}

.sobre-mi .contenedor {
  text-align: center;
}

.titulo-sobremi{
  font-size: 2rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
  padding: 15px 0;
  color: #000000;
}

.txt-sobremi{
  font-size: 12px;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  color: #000000;
}

/*Sección "Biografía" ==== Estilos para selectores de clase*/
.biografia{
  padding: 40px;
}

.biografia .columna{
  padding: 20px;
  border: 1px solid #333333;
  display:flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  transition: 0.3s ease-in;
}

.biografia .columna:hover{
  background-color: #ffffff;
}


.titulo-biografia{
  font-size: 2rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
  padding: 15px 0;
  color: #000000;
}

.biografia-img{
  width: 30px;
}

.biografia-titulos-secundarios{
  font-size: 15px;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  font-style: normal;
  color: #333333;
  margin: 10 px 0;
}

.biografía-textos-secundarios{
  font-size: 10px;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  color: #333333;
}

.badges-contenedor{
  font-size: 12px;
  margin: 10px 0;
}

.badge{
  margin: 5px;
}

/*Proyectos ==== Estilos para selectores de clase*/
.proyectos-recientes{
  padding: 40px;
}

.proyecto-titulo-principal{
  font-size: 2rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  padding: 15px 0;
  color: #000000;
}

.proyecto-descripcion{
  font-size: 15px;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  font-style: normal;
  text-align: center;
  color: #333333;
  margin: 10 px 0;
}

/*Imágenes de proyectos ==== Estilos para selectores de clase*/
.proyectos-recientes img{
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 20px;
  display: block;
  transition: all 0.3s ease;
}

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

.overlay{
  transition: all 0.3s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}

.overlay p{
  font-size: 25px;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  margin-bottom: 0;
}

.proyecto{
  position: relative;
}

.proyecto:hover img{
  opacity: 0.2;
}

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

.overlay .iconos-contendor{
  display: flex;
}

.overlay i{
  color: black;
  font-size: 30px;
  margin: 10px;
}

.btn-secondary{
  font-size: 10px;
}

/*Responsivo === Estilos para que los componentes sean responsivos */
@media screen and (max-width: 767px) {
      .navbar-brand{
        display: none;
      }
}

@media screen and (min-width: 700px){
       .perfil-foto-inferior{
        max-width: 600px;
       }
}

