

p {
  text-align: center;
}

body {
  background-color: #39FF14; /* neon green background */
  color: #FF1AC6;            /* neon pink text */
  font-family: 'Share Tech Mono', 'Courier New', monospace; 
  margin: 0;
  padding: 20px;
}

/* Text and glow */
h1, h2, h3, p, a {
  color: #FF1AC6;
  text-shadow: 0 0 5px #FF1AC6, 0 0 10px #FF1AC6, 0 0 20px #FF1AC6;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* === 3-column layout === */
.container {
  display: flex;
  min-height: 100vh;
}

/* Left and right columns */
.left-column,
.right-column {
  flex: 1;
  background-image: url('backgrounddd.gif');
  background-repeat: repeat;
  background-size: auto;
}

/* Center column */
.center-column {
  flex: 2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centers inner content vertically */
  align-items: center;     /* centers inner content horizontally */
  background: transparent;
}

/* Optional text centering */
.center-column h1,
.center-column p,
.center-column ul {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

p {
  text-align: left;
}

.eightyeight-by-thirtyone {
  width: 88px;  /* Fixed width */
  height: 31px; /* Fixed height */
  object-fit: contain; /* Ensures image fits inside without cropping */
}


