﻿html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

h1 {
    font-size: 3rem;
    color: #007bff;
}

p {
    font-size: 1.25rem;
    color: #6c757d;
}

footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 1rem;
    width: 100%;
}
