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;
}

#myDIV {
  height:300px;
  display: grid;
  gap: 10px;
  padding: 10px;
  grid-template-areas: 'myArea myArea .' 'myArea myArea .';
}
#myDIV div {
  text-align: left;
  padding: 30px;
  font-size: 25px;
}
.item1 {
  grid-area: myArea;
}