@import url("./lib/lib.css");

.hero-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: right;

  p {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
  }
}

.ascii {
  font-size: 9px;
  line-height: 1;
  white-space: pre;
  letter-spacing: 0;
  color: var(--cool-purple);
}

.bmo {
  color: var(--cool-blue);
}

.name {
  color: var(--cool-pink);
}

.pulse {
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform;
  animation: quickPulseCycle 6s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .pulse {
    animation: none;
  }
}

@keyframes quickPulseCycle {
  0% {
    transform: rotate(1.4deg) scale(1);
  }
  25% {
    transform: rotate(1.8deg) scale(0.92);
  }
  50% {
    transform: rotate(1.4deg) scale(1);
  }
  75% {
    transform: rotate(1deg) scale(1.06);
  }
  100% {
    transform: rotate(1.4deg) scale(1);
  }
}

.social-media {
  display: flex;
  justify-content: center;
  column-gap: 1rem;
  margin-top: 1rem;
}

.sm-link {
  color: var(--cool-purple);
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  text-decoration: underline;
}

.sm-link:hover {
}

.social-media-card {
  color: var(--cool-purple);
  background: transparent;
  padding: 6px;
  cursor: pointer;
  position: relative;
  outline: none;
  border: none;
  box-shadow: inset 0 0 0 1px var(--cool-purple);
  border-radius: 9px;
  display: flex;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.social-media-card:hover {
  color: var(--cool-black);
  background-color: var(--cool-purple);
  box-shadow: inset 0 0 0 1.5px var(--cool-purple);
}

.cmd-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem;
  margin: 0.5rem;
  font-weight: 800;
}

.cmd {
  border-radius: 0.5rem;
  padding: 0.8rem;
  margin-top: 1rem;
  background-color: var(--cool-purple);
  color: #000;
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 425px) {
  .bmo {
    font-size: 8px;
  }
}
