/* /* .navbar {
    padding: 1rem;
/* } */ 
/*  */

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* min-height: 100vh; */
}

.main-nav__list {
    list-style: none;
    /* box-shadow: 0 2px 4px black; */   
}
.main-nav__list:hover {
    box-shadow: 0 2px 4px rgb(174, 190, 205, 0.20);
}
.main-nav__item {
    display: inline-block;
    padding: 15px;
}
.main-nav__link {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    display: block;
    overflow: hidden;
}
.main-nav__link span {
    color: #434649;
    display: block;
}
.main-nav__link:hover span {
    transform: translateY(-100%);
    transition: 1s;
}
/* .main-nav__link:before {
    position: absolute;
    content:attr(data-link-alt);
    top: 100%;
    opacity: 0;
    transition: 1s;
    color: #f40552;
    font-weight: bolder;
} */
.main-nav__link:hover::before {
    top: 0;
    opacity: 1;
    text-decoration: underline;
}




.btn {
    padding: .45rem 1.5rem .35rem;
  }

.btn-sm {
    padding: .25rem 0.5rem .20rem;
  }  
.gradient-custom {
    /* fallback for old browsers */
    background: #fad100;
  
    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to right, rgb(250, 218, 133), rgb(255, 233, 93));
  
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(to right, rgb(250, 218, 133), rgba(255,233,93))
  }

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

h1 {
 font-size: 2.5rem;
 font-family: 'Rubik Dirt', cursive;
 color: #FDCB2D;
}

h2 {
    font-family: 'Roboto Serif', serif;
}

h3 {
    font-family: 'Roboto Serif', serif;
}
.seccion-oscura {
    color: white;
    background-color: #1b1b32;
}

.seccion-clara {
    color: #1b1b32;
    background-color: whitesmoke;
}

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


.seccion-textos {
    font-size: 1.2rem;
    font-family: 'Roboto Serif', serif;
}

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

}

.hero-principal {
    padding: 5rem;
    padding-bottom: 10px;
}

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

.hero-principal h2 {
    font-size: 1.5rem;
    color: #615171;
}
/* Sobre mi */
.sobre-mi {
    height: 500px;
    padding: 10px;
}

.sobre-mi .contenedor {
    max-width: 700px;
    text-align: center;
}

.sobre-mi h2 {
    color: #FDCB2D;
}

/* Casa Imagen Ppl Redonda */
.imagen-casa {
    width: 250px;
    height: 230px;
    border-radius: 50%;
    margin: 20px;
}
/* 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 i {
    font-size: 2.5rem;
    color: #FDCB2D;
    background-color: #0a0a23;
    padding: 8px 19px;
    border-radius: 50%;
}

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

/* Footer */
footer {
   color: whitesmoke;
    
}
.carousel-inner {
    padding: 0;
}
/* Responsives behaviors */
@media screen and (max-width: 700px) {
    .navbar-brand {
        display: none;
     }
     .main-nav__item  {
        max-width: 300px;
        align-items: center;
        align-content: center;
     }

    
}

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

@media screen and (max-width: 530px) {
    h1{
        font-size: 28px;
    }
    
    h2 {
    font-size: 25px;
    }
     
    h3 {
    font-size: 22px;
      } 
      
    img{
        align-items: center;
        justify-content: center;
        
    }      
}