﻿body {
    background-image: url(../Images/product-background.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    background-attachment: fixed;
    color: #555555;
    margin: 0px;
    min-height: 100vh;
    padding: 0px;
    padding-bottom: 40px; /* footer height */
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 14px;
    line-height: 1.42857143;
    z-index: 1;
    flex-direction: column; /* stack content vertically */
}

.footer {
    background-color: #d9ecf5;
    text-align: center;
    padding: 10px;
    width: 100%;
    position: fixed;
    bottom: 0;
    height: 40px; /* footer height */
    z-index: 100; /* ensure the footer stays above all other controls */
}

    .footer span {
        color: #464646;
        font-size: 10px;
    }
