.card_look_btn {
  display: flex;
}

.much_btn_card {
  width: 100px;
  height: 40px;
  position: relative;
  top: 10px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.5em;
  display: inline-block;
  cursor: pointer;
  border-radius: 6em;
  transition: all 0.2s;
  border: none;
  font-size: 10px;
  font-family: inherit;
  font-weight: 500;
  color: black;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin: 20px auto;
}

.much_btn_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.much_btn_card:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.much_btn_card::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.much_btn_card::after {
  background-color: #ffffff;
}

.much_btn_card:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}