body {
  display: grid;
  height: 100vh;
  grid-template-rows: auto max-content;
}

main {
  display: grid;
  align-content: center;
  justify-self: center;
  justify-items: center;
  width: fit-content;
  padding: 1em;
  text-align: center;
}

#home-nav {
  width: 100%;
}

#home-nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

#home-nav ul a {
  display: grid;
  justify-items: center;
  gap: 0.25em;
  color: var(--primary);
  text-decoration: none;
}
      
#home-nav ul a .material-symbols-outlined {
  border-radius: 0.5em;
  background-color: var(--primary-container);
  padding: 0.5em;
  color: var(--on-primary-container);
  transition: filter 0.2s, bottom 0.2s;
  bottom: 0;
  position: relative;
}
      
#home-nav ul a:hover .material-symbols-outlined {
  bottom: 0.1em;
  filter: brightness(120%);
}
      
#home-nav ul a p {
  margin: 0;
}