.bg-primary-vivid {
  background: linear-gradient(-45deg, #70CCFF, #88fffe);
}

.extra-title {
  height: 120px;
  margin-bottom: -60px;
}

.catpaw-mark {
  width: 50px;
}

@media screen and (max-width: 767px) {
  .catpaw-mark {
    width: 70px;
  }
  .extra-title {
    margin-bottom: -70px;
  }
}

.catpaw-bounce {
  animation: poyooon 0.9s ease infinite;
}

@keyframes poyooon {
  0% {transform: scale(1, 1) translate(0%, 0%);}
  10% {transform: scale(1.1, 0.9) translate(0%, 5%);}
  40% {transform: scale(1.2, 0.8) translate(0%, 10%);}
  50% {transform: scale(1, 1) translate(0%, 0%);}
  60% {transform: scale(0.9, 1.2) translate(0%, -25%);}
  75% {transform: scale(0.9, 1.2) translate(0%, -10%);}
  85% {transform: scale(1.2, 0.8) translate(0%, 10%);}
  100% {transform: scale(1, 1) translate(0%, 0%);}
}

.hero-bg {
  background-color: #212121;
}

.hero-box {
  animation: dashedbox 3s ease infinite;
  background-size: 200% 200%;
}

.hero-box-dark {
  animation: dashedbox 3s ease infinite;
  background-size: 200% 200%;
  background-color: #374151;
  color: #efefef;
}

.hero-box-dark h2 {
  color: #fafafa;
}

@keyframes dashedbox {
  0% {
    box-shadow: 0px 5px 10px 0px rgba(0, 195, 255, 0.5);
    background-position: 10% 0%;
  }

  50% {
    box-shadow: 0px -5px 10px 0px rgba(0, 195, 255, 0.5);
    background-position: 91% 100%;
  }

  100% {
    box-shadow: 0px 5px 10px 0px rgba(0, 195, 255, 0.5);
    background-position: 10% 0%;
  }
}

.hero-text:after {
  animation: herotext 3s linear infinite;
  content: '';
}

@keyframes herotext {
  0% {content: 'C';}
  1% {content: 'Cr';}
  2% {content: 'Cre';}
  3% {content: 'Crea';}
  4% {content: 'Creat';}
  5% {content: 'Creato';}
  6% {content: 'Creator';}
  7% {content: 'Creators';}
  45% {content: 'Creators';}
  46% {content: 'Creator';}
  47% {content: 'Creato';}
  48% {content: 'Creat';}
  49% {content: 'Crea';}
  50% {content: 'Cre';}
  51% {content: 'Cr';}
  52% {content: 'C';}
  53% {content: 'G';}
  54% {content: 'Ga';}
  55% {content: 'Gam';}
  56% {content: 'Game';}
  57% {content: 'Gamer';}
  58% {content: 'Gamers';}
  95% {content: 'Gamers';}
  96% {content: 'Gamer';}
  97% {content: 'Game';}
  98% {content: 'Gam';}
  99% {content: 'Ga';}
  100% {content: 'G';}
}

.flash-color {
  animation: flash-color 2s ease infinite;
}

@keyframes flash-color {
  0% {fill: #88fffe;}
  20% {fill: #88fffe;}
  25% {fill: #000;}
  30% {fill: #88fffe;}
  35% {fill: #000;}
  40% {fill: #88fffe;}
  60% {fill: #88fffe;}
  70% {fill: #000;}
  80% {fill: #88fffe;}
  100% {fill: #88fffe;}
}

.youtube,
iframe {
  width: 100%;
  height: auto;
  max-width: 100%;
}

#header-list {
  display: none;
}

#mobile-toggle:checked~#header-list {
  display: block;
}

#mobile-menu-icon {
  position: relative;
  align-items: center;
  appearance: none;
  background-color: transparent;
  user-select: none;
  border: none;
  cursor: pointer;
  display: block;
  width: 32px;
  height: 32px;
}

.mobile-menu-icon-line {
  background-color: currentColor;
  display: block;
  height: 4px;
  width: 100%;
  position: absolute;
  transform-origin: center;
}

#mobile-toggle:checked~#mobile-menu-icon {
  background-color: #f1f1f1;
  border-radius: 4px;
  width: 36px;
  height: 36px;
}

#mobile-menu-icon>.mobile-menu-icon-line:nth-of-type(1) {
  top: 0;
}

#mobile-menu-icon>.mobile-menu-icon-line:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

#mobile-menu-icon>.mobile-menu-icon-line:nth-of-type(3) {
  bottom: 0;
}

#mobile-toggle:checked~#mobile-menu-icon>.mobile-menu-icon-line:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

#mobile-toggle:checked~#mobile-menu-icon>.mobile-menu-icon-line:nth-of-type(2) {
  opacity: 0;
}

#mobile-toggle:checked~#mobile-menu-icon>.mobile-menu-icon-line:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media (min-width: 768px) {
  #mobile-toggle {
    display: none !important;
  }

  #header-list {
    display: block !important;
  }

  #mobile-menu-icon {
    display: none !important;
  }
}

.blog-card {
  display: block;
  width: 100%;
  max-width: 384px;
  height: auto;
  border: solid 1px #000;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 10px 10px rgb(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.blog-card:hover {
  box-shadow: 15px 15px rgb(0, 0, 0, 0.15);
}

.blog-card-img {
  margin: 0;
  width: 100%;
  height: auto;
  border-bottom: solid 1px #666;
}

.blog-card-desc {
  padding: 0.75em;
}

.blog-card-desc p {
  margin: 0;
}

.blog-card-button {
  border: solid 1px #000;
  border-radius: 4px;
  padding: 0.25em 1em;
  margin-top: 0.5em;
  text-decoration: none;
}

.blog-card-button::after {
  content: "";
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg class='w-3.5 h-3.5 ml-2' aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 14 10'%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1 5h12m0 0L9 1m4 4L9 9'%3E%3C/path%3E%3C/svg%3E%0A");
}

.mylink {
  transition: border 0.2s;
  border-color: #88fffe;
}

.mylink:hover {
  border-bottom: dashed 1px currentColor;
}
