.navbar {
  background-color: transparent;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: black;
  height: 90px;
  row-gap: 30px;
}

.logo-text{
  color: white;
  font-size: 40px;
  width: 300px;
  height: 70px;
  font-family: itim, arial;
}
.menu-items {
  display: flex;
  gap: 30px;
  text-align: center;
  font-family: Arimo, arial;
  font-size: 20px;
  color: white;
}

.menu-item {
  color: white;
  font-size: 20px;
  text-align: center;
  font-family: itim, arial;
}
.clink:link{
  color:white;
  text-decoration: none;
}
.clink:visited{
  color:white;

}
.clink{
  font-family: itim, Arial, Helvetica, sans-serif
}
.clink:hover{
  text-decoration: underline;
}
.navbar{
  position: sticky;
  top: 0;
  z-index: 10;
}