.cards__showcase {
  width: 100%;
  height: 100%;
  margin-top: 100px;
  display: flex;
  align-items: start;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding-bottom: 100px;
  min-height: 700px;
}

.cards > a {
  position: absolute;
  left: 20%;
  top: 150px;
  border: 1px solid white;
  background-color: #777;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  border-radius: 20px;
  transition: 0.3s all ease;
}

.cards > a:hover {
  background-color: white;
  color: black;
}
