/* 
Theme Name: Aha! Template
Description: A child theme for Hello Elementor, created by Aha! Creative
Author: Aha! Creative
Author URI: https://aha-creative.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: aha-theme
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.hentry, .aha-main-content {
    flex: 1 0 auto;
}

.elementor-widget-text-editor ul {
    margin-bottom: .9rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(10%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -10%, 0)
    }

    100% {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-10%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}