@font-face {
  font-family: "Lato-regular";
  src: url("../../fonts/Lato/Lato-Regular.ttf");
}
@font-face {
  font-family: "Cardo-regular";
  src: url("../../fonts/Cardo/Cardo-Regular.ttf");
}
@font-face {
  font-family: "Cinzel-regular";
  src: url("../../fonts/Cinzel_Decorative/CinzelDecorative-Regular.ttf");
}
body, h3 {
  font-family: "Lato-regular";
}

h1,
h2 {
  font-family: "Cinzel-regular";
}

.mainLogo__title--cardoFont {
  font-family: "Cardo-regular";
}

.base-strategy__card {
  position: relative;
  border: 2px solid #000;
  border-radius: 1rem;
  overflow: hidden;
}
.base-strategy__card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 1rem;
  border: 10px solid transparent;
  border-image: linear-gradient(90deg, red, transparent, red) 1;
  border-image-slice: 1;
  animation: snake 5s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes snake {
  0% {
    border-image-source: linear-gradient(90deg, red, transparent, red);
  }
  25% {
    border-image-source: linear-gradient(180deg, rgb(0, 0, 0), transparent, red);
  }
  75% {
    border-image-source: linear-gradient(360deg, rgb(0, 0, 0), transparent, red);
  }
  100% {
    border-image-source: linear-gradient(450deg, red, transparent, red);
  }
}