header{
    display: flex;              /* Makes items go in a row */
    justify-content: space-between; /* Pushes logo left, nav right */
    align-items: center;        /* Vertically centers them */
    padding: 10px 20px;
    background-color: blue;
 }
nav ul{
    list-style: none;
    display: flex;   /* Makes nav items horizontal */
    justify-content: center;
    gap: 20px;       /* Space between menu items */
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size:24px;
    font-weight: bold;
    word-spacing: 5px;
    color: white;
}
nav a{
    color: white;
}

body{
    font-size:24px;
    font-weight:normal;
    word-spacing: 5px;
    color:bisque
    background-color:blanchedalmond
}

footer{
    background-color: blue; 
    font-family: Arial, Helvetica, sans-serif;
    font-size:12px;
    font-weight: bold;
    color: white;
}