body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  background: url("/img/bg.png") no-repeat center / cover;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.link {
  display: block;
  text-decoration: none;
  min-width: 250px;
  color: white;
  background-color: #e60505;
  border-radius: 12px;
  cursor: pointer;
  display: block;
  text-align: center;
  padding: 10px 15px;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 744px) {
  .link {
    min-width: 320px;
    padding: 15px 15px;
  }
}
.flare {
  position: absolute;
  top: 0;
  height: 100%;
  width: 25px;
  transform: skewX(-45deg);
  animation: flareAnimation;
  left: 80%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.4)
  );
  animation: flareAnimation 3s infinite linear;
}

@keyframes flareAnimation {
  0% {
    left: 10%;
  }
  100% {
    left: 80%;
  }
}
.img {
  width: 100%;
}
