.navbar {
  height: 112px;
  min-width: 600px;
  width: 100%;
  background: #1E1E2E;
  color: white;
}

.nav-container {
  height: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}


.link {
  cursor: url("closed_paw.png"), auto;
  width: 33.3%;
  height: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 3rem;
  transition: background-color 0.4s ease, transform 0.2s ease;
  font-family: "EB Garamond", serif;
}

.link:hover {
    background-color: #9d6d99;
}

