.menu {
  display: flex;
  justify-content: flex-end; /* push items to the right */
  flex-wrap: wrap;           /* allow items to wrap if they don't fit */
  gap: 20px;                 /* spacing between items */
  padding-right: 5px;
  padding-top: 3px;
  box-sizing: border-box;
}


