/*Navbar*/

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

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

.navbar .nav-item{
 text-decoration: underline;
}

.navbar .nav-link:hover{
 color: purple;
 font-weight: bold;
}

.navbar-brand img:hover{
 padding: 2px;
}

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

h1{
 font-size: 2.5rem; 
 font-family: 'Righteous', cursive;
}

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

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

.seccion-titulo{
 font-size: 2rem; /*2 veces el elemento raiz*/
 padding: 15px;
 font-family: 'Righteous', cursive;
}

.seccion-descripcion{
 font-size: 1.2rem;
 color: grey
}

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

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

.texto-negro{
 color: black;
}

.texto-blanco{
 color: white;
}

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

.hero-principal{
 padding: 3rem;
}

.hero-img{
 width: 200px;
 height: 200px;
 border-radius: 50%;
 margin: 20px;
}

.hero-principal h2{
 font-size: 1.5rem;
 color: rgb(143, 143, 143);
}

/*About me*/
.about-me{
 height: 500px;
 padding: 10px;
}

.about-me .contenedor{
 max-width: 600px;
 text-align: center;
}

/*Experience*/

.experience{
 padding: 40px;
}

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

.experience i{
 font-size: 2.5rem;
 color: white;
 background-color: black;
 padding: 8px 19px;
 border-radius: 50%;
}

.experience .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;
}

.experience .columna:hover{
 color: white;
 background-color: black;
}

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

.badge{
 margin: 5px;
 background-color: purple;
}

/*Projects*/

.proyectos-recientes{
 padding: 40px;
}

.proyectos-recientes img{
 height: 100%;
 width: 100%;
 margin: 10px;
 border-radius: 10px;
 border: 2px solid black;
 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;
}

.proyecto{
 position: relative;
}

.proyecto:hover img{
 opacity: 0.2;
}

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

.overlay .iconos-contenedor{
 display: flex;
 justify-content: space-evenly;
}

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

/*Testimonios*/

.testimonios{
 padding: 40px 40px 80px 40px;
}

.testimonios .carousel{
 max-width: 800px;
 background-color: white;
 border-radius: 20px;
}

.carousel-item{
 height: 500px;
}

.carousel-item .container{
 width: 100%;
 height: 100%;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
}

.testimonio-image{
 font-size: 150px;
 margin: 10px 10px 20px 10px;
 color: black;
}

.testimonio-texto{
 max-width: 70%;
 font-size: 20px;
 text-align: center;
 font-family: 'Xanh Mono', monospace;
}

.persona{
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
}

.cliente{
 font-size: 1.2rem;
}

.cargo{
 font-size: 0.9rem;
 color: gray;
}

/*Contact*/

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

.contacto .rectangulo{
 margin-top: -5rem;
 background-color: purple;
 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;
 background-color: transparent;
 border: 2px solid white;
 padding: 1.25rem 2em; 
 margin: 10px;
 border-radius: 100px;
 transition: all 0.2s ease-in-out;
}

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

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

.contacto button:hover i{
 color: black;
}

/*Footer*/

.footer{
 min-height: 500px;
}

.footer-icono{
 height: 80px;
 width: 80px;
 margin: 10px;
 padding: 5px;
 background-color: white;
 border-radius: 20%;
}

.footer-texto{
 font-size: 1.5rem;
 padding: 20px;
 margin-bottom: 30px;
 font-family: 'Fira Mono', monospace;
}

.iconos-redes a{
 width: 50px;
 height: 50px;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 2px;
 margin: 10px;
 border: 2px solid white;
 border-radius: 50%;
 transition: all 0.2s ease-in;
}

.iconos-redes a:hover{
 background-color: white;
 border: 2px solid purple;
}

.iconos-redes i{
 color: white;
 font-size: 1.5rem;
 transition: all 0.2s ease-in;
}

.iconos-redes a:hover i{
 color: black;
}

.derecho-autor{
 font-size: 15px;
 color: gray;
 padding: 20px;
}

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

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

@media screen and (max-width: 800px) {
 .testimonio-image{
  font-size: 100px;
 }
 .testimonio-texto{
  font-size: 18px;
 }
}