.menu-container {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2em;
}
.menu-container .welcome {
  font-size: 2em;
  color: #43c46e;
}
.menu-container .title {
  font-size: 1.85em;
  color: #000;
  font-weight: 600;
}
.menu-container .menu-card {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75em;
  margin-top: 1.5em;
}
.menu-container .menu-card a {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  width: 100%;
  height: 18vh;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  box-shadow: rgba(67, 196, 110, 0.3) 0px 1px 2px 0px, rgba(67, 196, 110, 0.15) 0px 1px 3px 1px;
  font-weight: 600;
  font-size: 1.25em;
  color: #43c46e;
}
.menu-container .menu-card a img {
  width: 65px;
  height: 65px;
}
.menu-container .menu-card a:hover {
  color: #fff;
  background-color: #43c46e;
}/*# sourceMappingURL=home-page.css.map */