* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: rgb(81, 81, 81);
}

main .man {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid black;
  place-items: center;
}
main .man .menu {
  height: 100%;
  margin-top: 1rem;
  border-bottom: 3px solid rgb(255, 255, 255);
}
main .man .menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.5rem;
}
main .man .menu a:hover {
  background-color: aquamarine;
}
main .man .menu a div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}/*# sourceMappingURL=style.css.map */