/*I kept the styling minimal as to not get
  sucked into the coding aspect of it. 
  Here's a bit of my source code anyway 
  (feel free to insprect element)
      -Anastasia*/
body {
  background-color: white;
  color: black;
  font-family: Times;
}

.landing {
  max-width: 700px;
  margin: auto;
}

.enter {
  max-width: 500px;
  margin: auto;
}

p {
  text-align: center;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.left {
  max-width: 300px;
  order: 1;
  margin: auto;
  padding: 10px;
}

.centre {
  max-width: 300px;
  order: 2;
  margin: auto;
  padding: 10px;
}

.right {
  max-width: 300px;
  order: 3;
  margin: auto;
  padding: 10px;
}