/* Centering the main page header */
h1 {
    text-align: center;
}

/* Centering the site navigation */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Centering the footer information */
footer {
    text-align: center;
}
/* Styling the body */
body {
    background-color: #000000;
    color: #FF0000;
    font-family: Arial, sans-serif;
    margin: 10px;
}