/* Base styling */
body {
  background-color: #8c1aff;  /* purple background */
  color: #ff1ac6;             /* bright pink text */
  font-family: Verdana, Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Container to hold left, center, and right columns */
.container {
  display: flex;
  min-height: 100vh;  /* full viewport height */
}

/* Left and right columns are blank spaces */
.left-column,
.right-column {
  flex: 1;               /* take equal space */
  background: #f0f0f0;   /* light grey to visualize blank columns */
}

/* Center column holds all your main content */
.center-column {
  flex: 2;               /* wider than side columns */
  padding: 20px;
  background: transparent;  /* keep pink body background visible */
  color:#000000;
}

/* Center text alignment for headings, paragraphs, and lists */
.center-column h1,
.center-column h4,
.center-column p,
.center-column ul {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Style links inside the h1 navigation */
.center-column h1 a {
  color: #000000;
  text-decoration: none;
  margin: 0 8px;
  font-weight: bold;
}

.center-column h1 a:hover {
  text-decoration: underline;
}

/* List styling */
.center-column ul {
  list-style-position: inside;
  padding-left: 0;
  margin-bottom: 20px;
  color: #000000;
}

/* Images in image row */
.image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.pic {
  width: 30%;
  border-radius: 8px;
}

/* GIF container */
.gif-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  flex-wrap: wrap;
  background: #ff1ac6;
  border-radius: 8px;
}

.gif-container img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Button wall styling */
.button-wall {
  text-align: center;
  margin: 30px 0;
}

.eightyeight-by-thirtyone {
  width: 88px;
  height: 31px;
}

/* Footer placeholder */
.footer {
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
  color: #ff1ac6;
}

.left-column,
.right-column {
  flex: 1;
  background-image: url('neon-2.gif'); 
  background-repeat: repeat-y;             
  background-position: center top;         
  background-size: auto;                     
}

