body {
  /* Replace the black background with a dark gradient or a repeating pattern */
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #e0e0e0; /* Off-white text is easier on the eyes than pure white */
  font-family: 'Courier New', Courier, monospace; /* Keeps the throwback feel */
  margin: 0;
  padding: 20px;
}

.container {
  display: flex; /* This creates the two columns */
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
}

.sidebar {
  flex: 1; /* Sidebar takes up less space */
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid #444; /* Separator line */
  padding-right: 20px;
}

.content {
  flex: 3; /* Content takes up more space */
}

/* Style for your blinkies at the bottom */
.blinkies {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}