a[href="https://kristydalay.com/#popup:home_contact"]:hover {
  width="300px";
}

div.t-card__col.t-card__col_withoutbtn:hover {
  border: 2px solid blue;
  animation-name: wobble;
  animation-duration: 2.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
}


@keyframes wobble {
  0% { transform: rotate(0deg);}
  5% { transform: rotate(-5deg);}
  25% { transform: rotate(15deg); }
  50% { transform: rotate(-10deg); }
  100% { transform: rotate(-5deg); }
}