#start {
    padding-bottom: 0;


    /* Children */

    .flex-row {
        flex-flow: row-reverse nowrap;
        flex: 1;

        gap: -2rem;
    }
    
    h1 {
        max-width: 12em;
        margin-bottom: 1em;
    
        animation: fade-in-upwards 1s ease .25s both;
    }

    .text-block {
        align-self: flex-start;
    
        width: 70%;
        max-width: 50rem;
    
        animation: fade-in-upwards 1s ease .5s both;
    }

    .btn-regular {
        margin: 2em 0;
    }

    figure {
        align-self: flex-end;
        width: 35%;
    
        margin-left: -2rem;
    
        animation: fade-in-upwards 1s ease .5s both;
    }
}

@keyframes fade-in-upwards {
    0%  {opacity: 0; transform: translateY(20px);}
    100%{opacity: 1; transform: translateY(0);}
}