.jumbotron.smallify img {
    margin-bottom: 11px;
    animation: foldup 3s ease forwards;
    animation-delay: 2s;
    transition: all 0.75s ease;
}

.smallify {
    animation: shrink 3s ease forwards;
    transition: all 0.75s ease;
}

.delayed {
    animation-delay: 2s;
}

.fade-out,
.jumbotron.smallify h1,
.jumbotron.smallify p,
.jumbotron.smallify br {
    animation: fade 6s ease forwards;
    animation-delay: 1s;
}

@keyframes shrink {
    to {
        transform: scale(30%);
        margin: unset;
        padding: unset;
    }
}

@keyframes fade {
    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        max-height: 0;
    }
}

@keyframes foldup {
    to {
        margin-bottom: unset
    }
}