/* Base reset */
body {
  margin: 0;
  padding: 0;
  background: url("bob.jpg") repeat fixed;
  font-family: 'Press Start 2P', monospace;
  color: white;
}

/* Container that centers everything */
.container {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  position: relative;
}

/* Sidebars */
.sidebar {
  width: 1000px;
  background-color: #4C08DF;
  padding: 10px;
  border: 2px dashed #99c;
}

/* Main middle content */
.main-content {
  flex: 1;
  background-color: purple;
  margin: 0 10px;
  padding: 20px;
  border: 2px line #0000ff;
  text-align: center;
}

/* Example image style */
.center-image {
  width: 250px;
  margin: 10px auto;
  display: block;
}

/* Optional: add borders and pixel look */
.sidebar, .main-content {
  box-shadow: 0 0 4px #999;
}