nav { position: fixed; top: 0; left: 0; right: 0; height: 40px; color: var(--foreground); background-color: var(--background); display: flex; align-items: center; justify-content: space-between; padding-left: 15px; padding-right: 15px; } nav a:not(#logo) { text-decoration: none; padding: 0 15px; font-size: 1.2rem; } nav a:hover:not(#logo) { text-decoration: underline; color: var(--background); background-color: var(--foreground); } img { height: 30px; width: auto; margin-right: 15px; } hr { width: 100%; border: none; border-top: 1px solid var(--foreground); margin: 0; } .dropdown { display: none; } .dropdown.open { display: flex; flex-direction: column; position: absolute; right: 0; top: 40px; background-color: var(--background); color: var(--foreground); border: 1px solid var(--foreground); border-radius: 5px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); } #logo { display: flex; align-items: center; justify-content: center; cursor: url('https://cdn.nhcarrigan.com/cursors/pointer.cur'), pointer; text-decoration: none; font-size: 2rem; }