* {
  box-sizing: border-box;
}

:root {
  --cool-purple: #9999ff;
  --cool-pink: #f999f9;
  --cool-ocean: #789ff3;
  --cool-blue: #bbeeff;
  --cool-black: #191724;
  --cool-white: #f9f9fb;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  background-color: #191724;
  color: var(--cool-white);
  font-family: "Anonymous Pro", monospace;
  margin: 0;
  padding: 2%;
  font-weight: 500;
  font-style: normal;
  overflow-x: hidden;
  height: 100vh;
}
.container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  height: 100%;
}
.nav {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  padding: 1%;
}

.link {
  color: var(--cool-purple);
  font-weight: 700;
  font-size: 18px;
}

.link:hover {
  color: var(--cool-ocean);
}

.hero-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  height: 100%;
}
.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: #9ccfd8;
}

.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);
  }
}

.scanlines::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4) 1px, transparent 1px);
  background-size: 2px 2px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 9999;
}

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

.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);
}

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

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