
.header-container {
  position: fixed;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-content: center;
  justify-content:space-evenly;
  height: 10dvh;
  width: 100dvw;
  background-color: white;
  z-index: 4;
}

.header-logo {
  width: 3rem;
  height: auto;
  grid-column: 3/4;
  justify-self: center;
  align-self: center;
  margin: 0.6rem;
}


.header-nav {
  display: none;
  align-items: center;
  gap: 1rem;
}

.header-nav a {
  color: var(--color-teal);
  padding-right:1rem;
}

.header-nav p {
  color: var(--color-dark-teal-darker);
}

.discovery-btn {
  grid-column: 5/-1;
}

@media (min-width:1000px) {
  .header-container {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    height: 10dvh;
    width: 100vw;
    gap: 4rem;
    
}
 
.header-logo {
  height: auto;
  justify-self: center;
  align-self: center;
}


.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}



}