/** Barra de navegación **/

.navbar{
    padding: 2rem;
    background-color: gray;
}



/** FIN Barra de navegación **/

/** Sección hero**/

.color-negro{
    color: black;
    font-size: 100px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.color-azul{
    color: navy;
    font-size: 100px;
}

.hero {
    background-color: white;

    text-align: center;
    min-height: 10px;
}

.hero-imagen-superior{
    width: 200px;
    height: 200px;
    margin: 20px;
}

.hero-imagen-inferior{
    width: 400px;
}

/** Fin sección hero**/

/**INCIO Seccion about**/

.sobre-mi {
    height: 500px;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.sobre-mi .contenedor {
    text-align: center;
    max-width: 600px;
}

/**Fin seccion about**/

/**Inicio seccion proyectos**/

.proyectos-recientes img{

height: 100%;
width: 100%;
padding: 10px;
border-radius: 20px;
display: block;
transition: all 0.2s ease;

}

.overlay p{
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 0;
}

.proyecto{
    position: relative;
}

.proyecto:hover img{
    opacity: 0.2;
}

.proyectos-recientes{
    padding: 40px;
}

.proyectos-contenedor{
    padding-top: 60px;
    margin-bottom: 40px;
}

.overlay{
    transition: all 0.2s ease;


    position: absolute;

    top: 50%;
    left: 50%;


    transform: translate(-50%, -50%);
    text-align: center;
}

.proyecto:hover .overlay{
    opacity: 1;
}

.overlay .iconos-contenedor{
    display: flex;
}

.overlay i{
    margin: 10px;
    font-size: 60px;
    color: black;
}

/**Fin seccion proyectos**/

/**INICIO seccion articulos**/

.articulos{
    min-height: 500px;
    padding: 30px;
}

.articulos .card{
    width: 80%;
    max-width: 600px;
    margin: 20px;
}

.articulos .card-header{
    font-weight: bold;
}

/**FIN seccion articulos**/

/**INCIO Seccion testimonios**/

.testimonios {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 80px;
}

.testimonios .carousel {
    max-width: 800px;
}

.carousel-item {
    height: 800px;
}

.carousel-item .container {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testimonio-imagen  {
    height: 150px;
    width: 150px;

    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    margin-left: 10px;
}

.testimonio-texto {

    max-width: 70%;
    font-size: 20px;
    text-align: center;
    font-family: "Share tech mono" , monospace;
}

.testimonio-info {
    text-align: center;
    font-weight: bold;
}

.testimonio-info p {
    margin-bottom: 0;
}

.testimonio-info .cliente {
    font-size: 1.2rem;
}

.testimonio-info .cargo {
    font-size: 0.9rem;
    color: #1b1b32;
}

/**FIN Seccion testimonios**/

/**Estilos generales**/

section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1 {
    font-size: 2.5rem;
    font-family: "Rubik Dirt" , cursive;
}

.seccion-oscura {
    color: white;
    background-color: #1b1b32;
}

 .seccion-clara{
    color: black;
    background-color: white;
 }

 .seccion-titulo{
    font-size: 2rem;
    padding: 15px o;
    font-family: "Rubik Dirt" , cursive;
 }

 .seccion-descripcion{
    font-size: 1.2rem;
    color: cadetblue;
 }

 .seccion-texto {
    font-size: 1.2rem;
 }

 .btn-info{
    font-size: 1.1rem;
    margin: 20px;
 }

 .texto-negro{
    color: black;
 }

 .texto-blanco{
    color: white;
 }



/*** estilos del footer***/



/**Inicio seccion experiencia**/

.experiencia{
     padding: 20px 20px 40p 200px;
}
.experiencia .columna{
    padding: 10px;
    border: 2px solid black;

    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: cadetblue;

}
.experiencia i{
    font-size: 2.5rem;
    color: aquamarine;
    background-color: beige;
    padding: 8px 19px;
    border-radius: 500%;
}
.experiencia-titulo{
    font-size: 25px;
    font-weight: bold;
    margin: 10px 0;
}
.badges-contenedor{
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}
badge{
    margin: 5px;
}



/**Fin seccion experiencia**/

/**INICIO seccion contacto**/

.contacto .container{
    max-width: 1100px;
    min-height: 200px;
    padding: 20px;
}

.contacto button:hover i{
    color: black;
}

.contacto .rectangulo{
    background-color: aquamarine;
    margin-top: -5rem;
    border-radius: 20px;
    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 i{
    color: white; 
    font-size: 1.3rem;
    transition: all 0.2s ease-in-out;

}

.contacto button:hover{
    background-color: white;
    color: black;
}

.contacto button {
    color: white; 
    font-weight: bold;
    background-color: transparent;
    border: 2px solid white;
    margin: 10px;
    border-radius: 100px;

}
/**FIN seccion contacto**/

/**INICIO seccion footer**/

footer{
    min-height: 500px;
}

.footer-logo{
    width: 80px;
    margin: 15px;
}

.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 i:hover{
    color: black;
}