@keyframes games {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  35% {
    transform: scale(1);
    opacity: 1;
  }
  65% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}
.sadgasfg {
  position: fixed;
  right: 100px;
  bottom: 100px;
  z-index: 99999;
  text-decoration: none !important;
  max-width: 300px;
  -webkit-animation: games 5s infinite;
  animation: games 5s infinite;
}
.sadgasfg > a {
  -webkit-font-smoothing: antialiased;
  padding: 0;
  margin: 0;
  position: relative;
  border-radius: 50%;
}
.sadgasfg > a > img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .sadgasfg {
    position: fixed;
    right: unset;
    
    /*
    left: calc((100vw - 130px) / 2);
    width: 100%;
    max-width: 130px;
    */

    left: 10%;
    max-width: 80%;
    width: 80%;

    display: flex;
    justify-content: center;
    bottom: 20px;
    z-index: 99999;
    text-decoration: none !important;
    -webkit-animation: games 5s infinite;
    animation: games 5s infinite;
  }
  .sadgasfg > a {
    -webkit-font-smoothing: antialiased;
    padding: 0;
    margin: 0;
    position: relative;
    border-radius: 50%;
    width: 100px!important;
    height: 100px!important;
  }
  .sadgasfg > a > img {
    max-width: 100%;
  }
}