:root {
  --bg-dark: #0d0221;
  --purple-main: #6a0dad;
  --teal-neon: #00f2ff;
  --neon-pink: #ff00ff;
}

body {
  background-color: var(--bg-dark);
  color: #e0e0e0;
  font-family: 'Segoe UI', sans-serif;
  /* Removed height: 100vh and align-items: center */
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Keeps the wrapper centered, but allows scrolling */
  text-align: center;
}

#wrapper {
  max-width: 1000px;
  width: 100%;
}

/* Neon Text Glow Effect */
h1 {
  color: var(--teal-neon);
  text-transform: uppercase;
  font-size: 3rem;
  text-shadow: 0 0 10px var(--teal-neon), 0 0 20px var(--purple-main);
  border: 3px solid var(--purple-main);
  padding: 20px;
  text-align: center;
  box-shadow: inset 0 0 15px var(--purple-main), 0 0 15px var(--purple-main);
}
	.center
	{
	margin-right: auto;
	margin-left: auto;
	display:block;}
}
nav {
  text-align: center;
  margin-bottom: 30px;
}

article {
  clear: both;
  margin-top: 20px;
  text-align:center;
}

footer {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 20px;
}

  
}
p {
  border: 2px solid white;
}
h2 {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #00CAB1; /* Change color here */
  text-underline-offset: 5px;   /* Adds space between text and squiggle */
}

iframe {
	border: 2px solid white;
}
.scroll-container {
  overflow: hidden;
  width: 100%;
}

/* Track moves the items in a line */
.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

/* Individual item styling */
.scroll-item {
  width: 200px;
  padding: 10px;
  text-align: center;
}

.scroll-item img {
  width: 100%;
  display: block;
}

/* The movement logic */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
p {
	border:2px solid white;
	
}
body {
  margin: 0;
  min-height: 100vh;
  border: 20px solid;
  border-image: linear-gradient(to right, blue, purple) 1;
}

