body {
    background-color: #f4f2e9;/* light cream color */
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.center-image {
    width: 400px; /* adjust as needed */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.caption {
    margin-top: 10px;
    color: #333;
}

.contact-info {
    margin-top: 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

footer {
    background-color: #e8e6d9;
    color: #333;
    padding: 5px 0;
    font-size: 14px;
    width: 100%;
    margin-top: 10px;
    
    bottom: 0;
    left: 0;
}