/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
body {
  color: #222;
  background: #ffffff;
  font: 100% system-ui;
}
a {
  color: #0033cc;
}

@media (prefers-color-scheme: dark) {
  body {
    color: #ffffff;
    background: url('IMG_9773.jpeg');
    background-repeat: no-repeat;
  }

  body a {
    color: #809fff;
  }
}


@font-face {
  font-family: 'Trunic';
  src: url(https://wafflepancakes.neocities.org/Trunic/Trunic-Bold.otf);
}
.socials {
  background-image: url('test.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 20px;

  forced-color-adjust: none;
}
.console {
  background-image: url('matrix.gif');
  background-size: 20% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;

  forced-color-adjust: none;
}
.help {
  text-align: center;
  z-index: 10;
}
.blink {
  /* Set animation properties */
  animation-name: blinker; 
  animation-duration: 1s;  /* Duration of one animation cycle */
  animation-timing-function: linear; 
  animation-iteration-count: infinite;
}

/* Define the animation stages */
@keyframes blinker {
  0% {
    opacity: 1; /* Text is fully visible */
  }
  50% {
    opacity: 0; /* Text is fully transparent (hidden) */
  }
  100% {
    opacity: 1; /* Text is fully visible again */
  }
}
