.clickTagLink {
  position: absolute;
}

html,
body {
  overflow: hidden;
  margin: 0px;
}

body {
  width: 320px;
  height: 250px;
  background-color: transparent;
  color: #fff;
  font-size: 12px;
  font-family: 'proxima-nova', 'Arial', sans-serif;
  line-height: 1;
}

.banner {
  width: 320px;
  height: 250px;
  background-color: #021e40;
  background-image: radial-gradient(at 29% 74%, #2a3b8fbb 0px, transparent 50%),
    radial-gradient(at 31% 83%, #001237 0px, transparent 50%),
    radial-gradient(at 77% 7%, #2a3b8f97 0px, transparent 50%),
    radial-gradient(at 19% 18%, #29aae1f4 0px, transparent 50%),
    radial-gradient(at 70% 36%, #29aae153 0px, transparent 50%),
    radial-gradient(at 5% 0%, #2a458fb8 0px, transparent 50%),
    radial-gradient(at 59% 57%, #29aae1d9 0px, transparent 50%);
  background-size: 150% 150%;
  animation: my_animation 10s linear infinite;
}

@keyframes my_animation {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.text-container {
  position: absolute;
  width: 320px;
  height: 100%;
  color: #fff;
  text-align: center;
}

.text {
  position: absolute;
  top: 25%;
  width: 100%;
}

h1 {
  font-weight: 600;
  font-size: 1.8rem;
  margin: 0.5rem;
}

h2 {
  font-weight: 400;
  line-height: 1.2;
  font-size: 1.5rem;
}

.text-container #text1,
.text-container #text2 {
  opacity: 0;
}

.logo-outer {
  max-width: 320px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.logo-row-1,
.logo-row-2,
.logo-row-3 {
  max-width: 320px;
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 110px;
  height: auto;
}

.logo-row-1 .logo {
  max-width: 95px;
}

#text2 {
  margin-top: -2rem;
}

.nf_logo {
  max-width: 200px;
}

.motoss {
  margin-top: 1.5rem;
  font-size: 1.25rem;
}

.crop {
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

.hover {
  position: absolute;
  background: #0800ff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  opacity: 0;
  transition: 0.5s opacity ease;
  background-color: hsla(229, 77%, 11%, 1);
  background-image: radial-gradient(at 29% 74%, #2a3b8fbb 0px, transparent 50%),
    radial-gradient(at 31% 83%, #00143cdc 0px, transparent 50%),
    radial-gradient(at 77% 7%, #2a3b8f97 0px, transparent 50%),
    radial-gradient(at 19% 18%, #001f56f4 0px, transparent 50%),
    radial-gradient(at 70% 36%, #29aae153 0px, transparent 50%),
    radial-gradient(at 5% 0%, #2a458fb8 0px, transparent 50%),
    radial-gradient(at 59% 57%, #29aae1d9 0px, transparent 50%);
  background-size: 150% 150%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner:hover .hover {
  opacity: 1;
}

.cta {
  padding: 0.5rem 1rem;
  background: #ff5000;
  color: #021e40 !important;
  position: absolute;
  top: 40%;
  border-radius: 999px;
}

.hover h1 {
  font-size: 1.2rem;
  text-align: center;
}
