body {
  background-color: black;
  color: white;
  font-family: californian;
  font-size: 20px;
}

a:link {
  color: #87cefa;
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color: #7b68ee;
  background-color: transparent;
  text-decoration: underline;
}

a:hover {
  color: #6495ed;
  background-color: transparent;
  text-decoration: underline;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 10px;
  padding: 10px;
}

.grid-container > div {
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
}

.item1 {
  grid-area: 1 / 1 / span 1 / span 1;
}