@font-face {
  font-family: PixelOperator;
  src: url(PixelOperator.ttf);
}

body {
  overflow-x: hidden;
  font-family: PixelOperator;
  color: white;
  background-color: black;
}

a:link {
  color: white;
}

a:visited {
  color: white;
}

a:hover {
  color: white;
}

.container {
 height: 800px;
 width: 1200px;
 margin: 20px auto auto 10px;
 display: grid;
 grid-template-columns: 300px 300px 300px;
 grid-template-rows: auto;
 grid-template-areas: 
    "left middle right";
 gap: 5px 5px;
 padding: 10px;
}

.left {
  grid-area: left;
}

.middle {
  grid-area: middle;
}

.right {
  grid-area: right;
}

.time {
  font-size: 11px;
  font-family: TimesNewRoman;
  color: grey;
}