.navbar {
  height: 100%;
  width: 100%;
  background-color: rgb(160, 160, 160);
  padding: 20px;
  font-size: medium;
  position: sticky;
  top: 0;
  z-index: 1000;
}
ul {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 25px;
  list-style: none;
}
.links li a:hover {
  color: white;
  cursor: pointer;
}
.links li a {
  text-decoration: none;
  color: black;
}
