/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/* 1. Preparamos el contenedor principal para que ocupe todo el alto de la pantalla */
#wrap {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
}
/* 2. El contenido principal (main) crecerá para empujar al footer al fondo */
#main {
    flex: 1 0 auto !important;
}
