﻿/* Ensure the body and html take full height */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Make the row (which contains main content) expand */
.row {
    flex: 1;
    display: flex;
}

.footer {
    width: 100%;
    padding: 0;
}

#headerBanner {
    height: 150px;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

#headerBanner h1 {
    color: white;
    font-size: 35px;
}

#footerBanner {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footerBanner p {
    margin-bottom: 0;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    
    /*#headerBanner {
        height: 75px;
        padding: 0 25px;
    }

    #footerBanner {
        height: 75px;
    }*/
}