/* Your original styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

body {
  font-family: 'Crimson Pro';
  background-color: #000;
  /* Changed to black */
  color: #fff;
  /* Changed to white */
  text-align: center;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

pre {
  font-family: "Crimson Pro", monospace;
  font-size: calc(12px + 0.25vw);
  /* Adjust font size based on screen width */
  white-space: pre;
  word-wrap: normal;
  margin: 0 auto;
  text-align: center;
  /* Align left */
}

.container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

.graphics {
  margin-top: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  pre {
    font-size: 8px;
    /* Adjusted font-size for smaller screens */
  }
}

/* Provided styles */
:root {
  --bg: #000000;
  --clr-1: #B045A9;
  --clr-2: #E86F4A;
  --clr-3: #F3A712;
  --clr-4: #e54cff;

  --blur: 1rem;
  --fs: clamp(3rem, 8vw, 7rem);
  --ls: clamp(-1.75px, -0.25vw, -3.5px);
}

.aurora {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  mix-blend-mode: darken;
  pointer-events: none;
}

.aurora__item {
  overflow: hidden;
  position: absolute;
  width: 60vw;
  height: 60vw;
  background-color: black;
  border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  filter: blur(var(--blur));
  mix-blend-mode: overlay;
}

/* Animation styles */

.aurora__item:nth-of-type(1) {
  top: -50%;
  animation: aurora-border 6s ease-in-out infinite, aurora-1 12s ease-in-out infinite alternate;
}
