#perks-menu {
  display: flex;
  flex-direction: column;
  user-select: none;
}

.perks-holder {
  display: flex;
  flex-direction: row;

  width: 100%;
  margin-top: 16px;
  justify-content: space-evenly;
}

.perk {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.perkImg {
  width: 60px;
  border: black;
  border-style: solid;
  cursor: pointer;
}

.perk-description {
  text-align: center;
  width: 7%;
  margin-top: 63px;
  background-color: rgb(179, 179, 179);
  border: black solid;
  position: absolute;
  opacity: 0;
}

.perkImg:hover + .perk-description {
  opacity: 1;
}

