/* Remove default margins so the body fills the screen perfectly */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    min-height: 100vh; /* Makes the body exactly the height of the screen */
    background-color: #e9968a; /* Matches your site's pink background color */
}

/* Optional: Styling the link to look like your header links */
a {
    text-decoration: none;
    color: darkgreen; /* Matches your nav link color */
    font-style: italic; /* Matches your nav style */
    font-family: serif; /* Matches the look of your site */
    font-size: 1.2em;
}

a span:hover {
    border-bottom: 2px solid darkgreen; /* Matches your hover effect */
}
