@import url('https://fonts.googleapis.com/css2?family=Gaegu:wght@300;700&display=swap');

nav, .nav-links {
  display: flex;
}

nav {
  justify-content: space-around;
  align-items: center;
  height: 15vh;
  background-color: var(--bg-color);
}

.nav-links {
  gap: 4rem;
  list-style: none;
  font-size: 1.25rem;
  margin: 40px;
}

a {
  color: black;
  text-decoration: none;
  text-decoration-color: white;

}

a:hover {
  color: grey;
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-decoration-color: grey;
}

.logo {
  font-size: 2.25rem;
  flex-grow: 1;
  font-weight: 700;
  font-family: 'Gaegu', sans-serif;
}

.logo:hover {
  cursor: default;
}

.coffee {
  width: 35px;
  height: 35px;
  margin: 40px;
}

.cat-logo {  
  width: 35px;
  height: 35px;
}

/* 

.header__logo-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    background-color: var(--primary-color);
    z-index: 1;
}

*/
