.card {
  position: relative;
  height: 14rem;
  width: 95%;
  top: -16.5rem;
  margin: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.card-blur {
  position: absolute;
  height: 100%;
  width: calc(100% + 1px);
  background-color: black;
  opacity: 0;
  transition: opacity 0.15s ease-in;
}

.card:hover .card-blur {
  opacity: 0.8;
  background-color: rgb(120 71 118 / 86%);
}

.footer {
  z-index: 1;
  position: absolute;
  height: 150px;
  width: 100%;
  bottom: 0;
}

svg#curve {
  position: absolute;
  fill: white;
  left: 0;
  bottom: 0;
  width: 400px;
  height: 450px;
}

.card:hover .connection {
  transform: translateY(0px);
}

.info {
  font-family: "Josefin Sans", sans-serif;
  padding-left: 20px;
  transform: translateY(250px);

  transition: transform 1s cubic-bezier(0.31, 1.21, 0.64, 1.02);
}

.card:hover .info {
  transform: translateY(0px);
}

.name {
  font-weight: bolder;
    padding-top: 5px;
    color: rgb(0 0 0);
    filter: drop-shadow(1px 1px 1px white);
    font-size: 1.5rem;
}

.description {
  color: white;
  margin-top: 10px;
}

@media only screen and (max-width: 600px) {
.card{
    height: 10rem;
    top: -12.5rem;
}
.description{
    font-size: .8rem;
}
.footer{
    height: 130px;
}
}