@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&display=swap');

h1 { font-family: Arial, Helvetica, sans-serif; }

a, a:visited, a:link{
    text-decoration: none;
    color: black;
    font-family: "Comic Relief", system-ui;
}

body {
    background-color: #F2F0EF;
    width: 900px;
    margin:0 auto;
}

header {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0 20px;
    width: 900px;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 20px 0;
}

footer nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
    width:900px;
}