/* @media (prefers-color-scheme: dark) {
  body {
    background-color: #1a1a1a;
    color: #fff;
  }
} */

/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set a cool background color */
body {
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin-top: 5%;
}

ul {
  list-style-type: none;
}

/* Add a modern font */
body {
  font-family: Arial, sans-serif;
  /* zoom: 2; */
  font-size: x-large;
}

/* Style headings */
h1,
h2,
h3 {
  font-weight: bold;
  text-transform: uppercase;
}

h1 {
  font-size: 66px;
  margin-bottom: 20px;
}

h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Style links */
a {
  color: #00bfff;
  text-decoration: none;
  animation: colorCycle 2s infinite;
  animation-play-state: paused;
  font-size: 1.25em;
}

a:hover {
  color: #ff4500;
  animation-play-state: running;
}

/* Add some padding and margin to elements */
.container {
  padding: 20px;
  margin: 0 auto;
  max-width: 960px;
}

.section {
  margin-bottom: 40px;
}

/* Add some cool effects */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00bfff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #ff4500;
}

/* Add some cool animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 10s ease;
}

/* More fun animations that occur on mouse hover */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotate:hover {
  animation-play-state: running;
}

.rotate {
  animation: rotate 2s linear infinite;
  animation-play-state: paused;
}

/* CSS animation to bounce along the x, y */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.bounce {
  animation: bounce 2s infinite;
}

/* Css animation to move item slowly across the screen in both x, once it hits the side it goes back the other way */
@keyframes move {
  0% {
    transform: translateX(0);
    /* And change the color */
    color: #ff0000;
  }

  33% {
    transform: translateX(100%);
    color: #00ff00;
  }

  66% {
    transform: translateX(-100%);
    color: #0000ff;
  }

  100% {
    transform: translateX(0);
    color: #ff0000;
  }

}



.move {
  animation: move .0501s infinite;
}

/* CSS animation to cycle element through some psychedelic colors on mouse hover */
@keyframes colorCycle {
  0% {
    color: #ff4500;
  }

  25% {
    color: #00bfff;
  }

  50% {
    color: #ff4500;
  }

  75% {
    color: #00bfff;
  }

  100% {
    color: #ff4500;
  }
}

.color-cycle {
  animation: colorCycle 2s infinite;
}