/* Base styling */
body {
  background-color: #ff1ac6;  /* purple background */
  color: #ff1ac6;             /* bright pink text */
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  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:#39FF14;
 

}

/* Center text alignment for headings, paragraphs, and lists */
.center-column h1,

.left-column,
.right-column {
  flex: 1;
  background-image: url('fuck yeah.png'); 
  background-repeat: repeat-y;            
  background-position: center top;        
  background-size: 500px auto; /* width 100px, height auto */
}