/* Top navigation bar with a black background color  */
.navi {
  background-color: goldenrod;
  overflow: hidden;
  border: 0px solid;
  border-radius: 10px;
}

/* Style the links inside the navigation bar */
.navi a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.navi a:hover {
  background-color: #ddd;
  color: black;
}

/* Create a right-aligned (split) link inside the navigation bar */
.navi a.split {
  float: right;
  background-image: linear-gradient(140deg, #5BCEFA 10%, 
  #F5A9B8 10%, #F5A9B8 20%, #ffffff 20%, #ffffff 30%, 
  #F5A9B8 30%, #F5A9B8 40%, #5BCEFA 40%, #5BCEFA 50%, 
  #5BCEFA 50%, #5BCEFA 60%, #F5A9B8 60%, #F5A9B8 70%, 
  #ffffff 70%, #ffffff 80%, #F5A9B8 80%, #F5A9B8 90%, 
  #5BCEFA 90%, #5BCEFA 100%);
  background-size: 155.57px 130.54px;
  color: black;
}