@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

body {
    /*imgen de fondo unsplash*/
    background-image:url("https://unsplash.com/photos/dvnv9s0Kq9M/download?ixid=M3wxMjA3fDB8MXxhbGx8MTkzfHx8fHx8Mnx8MTcyNDM4MDk5MXw&force=true&w=2400");
    background-size: cover;
    background-position: top;
    font-family: sans-serif;
    color: #343a40;
    overflow-x: hidden; /* Para evitar scroll horizontal en animaciones */
    
}

h1, h2, h5 .card-title{
    color: #e1e1e1;
}

header, footer {
    background-color: #343a40;
    color: #fff;
    padding: 20px 0;
    border-radius: 10px;
}

section {
    color: hsl(100, 20%, 30%);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border-radius: 10px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

button{
    color:cadetblue;
    
}

.about_Me{
    color: black;
}

.card-body{
    background-color: #f6f5da ;
}

.hidden-section {
    color:#343a40;
    position: relative;
}

.hidden-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.hidden-section:hover .hidden-content {
    opacity: 1;
    visibility: visible;
}
/*OTROS RECURSOS*/
#lista{
    display: none;
    text-align: center;
}


/*habilidades favicon*/
.skill-item {
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: scale(1.1);
}

.skill-item i {
    margin-bottom: 10px;
    color: #007bff;
}


/*ANIMACIONES*/

.animate__fadeInDown {
    animation: fadeInDown 2s;
}

.animate__fadeInUp {
    animation: fadeInUp 2s;
}

.animate__fadeInLeft {
    animation: fadeInLeft 2s;
}

.animate__fadeInRight {
    animation: fadeInRight 2s;
}

.animate__zoomIn {
    animation: zoomIn 2s;
}

.animate__pulse {
    animation: pulse 1s infinite;
}
