﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header, footer {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 10px 0;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border:0px solid red;
}

p {
    font-size: 1.5em;
}
