/* Estilos generales */

body {
    font-family: Arial, sans-serif;
}


/* Estilos de secciones */

section {
    padding: 20px;
    margin: 20px;
}


/* Estilos específicos para secciones (agregar según sea necesario) */

#inicio {
    background-color: #f2f2f2;
    text-align: center;
}

#portafolio {
    background-color: #e6e6e6;
}

#sobre-mi {
    background-color: #d9d9d9;
}

#contacto {
    background-color: #cccccc;
}


/* Animaciones */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fast {
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24
}