@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap'); .header { font-family: monospace; background: papayawhip; } .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; } a { font-size: 22px; background: white; padding: 8px; /* this removes the line under the links */ text-decoration: none; } /* SOLUTION */ .header { /* Feel free to not worry too heavily on matching the font */ font-family: 'Courier Prime', monospace; padding: 8px; display: flex; align-items: center; justify-content: space-between; } ul { display: flex; margin: 0; padding: 0; gap: 8px; } a { font-weight: 400; }