*,
*:after,
*:before {
  box-sizing: border-box;
}

.container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

body {
  font-family: "Inter", sans-serif;
  color: #303030;
  background-color: #f5f5fb;
}

.menu {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
          flex-grow: 1;
  height: 72px;
  max-width: 370px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 1px 0 rgba(52, 46, 173, 0.25), 0 15px 30px 0 rgba(52, 46, 173, 0.1);
}

.menu-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-flex: 1;
          flex-grow: 1;
  text-decoration: none;
}
.menu-item:focus, .menu-item:hover {
  outline: none;
}
.menu-item:focus .material-icons, .menu-item:hover .material-icons {
  font-family: "Material Icons";
  color: #342ead;
}
.menu-item:focus .menu-item-label, .menu-item:hover .menu-item-label {
  color: #342ead;
}

.material-icons {
  font-family: "Material Icons Outlined";
  display: block;
  margin-bottom: 4px;
  font-size: 26px;
  color: #aeabde;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.menu-item-label {
  display: block;
  font-size: 13px;
  color: #c2c0e6;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}