.header  {
    font-family: monospace;
    background: papayawhip;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px
  }
  
  .logo {
    font-size: 48px;
    font-weight: 900;
    color: tomato;
    background: white;
    padding: 4px 32px;
  }
  
  ul {
    /* this removes the dots on the list items*/
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 10px;
  }
  
  a {
    color: blue;
    font-size: 22px;
    background: white;
    padding: 8px;
    /* this removes the line under the links */
    text-decoration: none;
  }