body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}

/* Top Row Styles */
.top-row {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-row a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

/* Footer Styles */
footer {
    background-color: #333; /* Assuming a similar background to the top-row, adjust as needed */
    color: white;           /* Assuming white text, adjust as needed */
    padding: 20px;          /* Add some padding */
    text-align: center;     /* This will center the inline content (text and links) */
    margin-top: auto;       /* Helps push footer to bottom if main content is short and body is flex */
}

footer p {
    margin: 5px 0; /* Add some spacing between the paragraphs in the footer */
}

footer a {
    color: #aaa; /* Style for footer links, can be same as top-row or different */
    text-decoration: none;
    margin: 0 10px; /* Spacing for links if they are on the same line */
}

footer a:hover {
    color: white;
}




