@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  min-height: 80px;
  background-color: #1E1E1C;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}


.header-wrapper{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color:   #1E1E1C;
  z-index: 10;
}

#header-logo {
  z-index: 10;
  width: 80px;
  height: 80px;
}

.nav{
  z-index: 10;
  display: flex;
}

a{
  text-decoration: none;
  color: #FCD56C;
  font-size: 20px;
  padding-right: 20px;

}

a:hover{
  color: #edb827;
}