.containerBottom {
    position: relative;
    /* Establish positioning context */
    height: 800px;
    /* Give the container a defined height */
}

.containerBottom p {
    position: absolute;
    /* Position the paragraph absolutely */
    bottom: 0;
    /* Align it to the bottom */
}