@font-face {
  font-family: 'Inter';
  src: url("/font/Inter/Inter_24pt-Medium.ttf") format('truetype');
}

.navbar{
  position: fixed;
  left: 0px;
  width: 100%;
  top: 0px;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(6, 1fr) 10vw;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.3s;
  font-family: 'Inter';
  font-weight: 500;
  padding: 10px 5vw;
}

.navbar.scrolled{
  background-color: rgba(33, 41, 50, 0.75);
}

.navbar.scrolled:hover{
  background-color: #212932;
}

.navbar a{
  color: #ffffff;
  text-decoration: none;
  font-size: 1.6vw;
  white-space: nowrap;
  justify-self: center;
  font-weight: 500;
}

.navbar a:first-child{
  justify-self: start;
}

.navbar a:nth-child(n+3){
  justify-self: end;
}

.navbar a:last-child{
  padding-left: 5vw;
}

.navbar a:hover{
  text-decoration: underline;
}

.navbar img{
  height: 6vw;
  vertical-align: middle;
}
