body {
  background-color: white;
  /*background-image: url("tech.png"); */
  background-repeat: repeat;
  color: black;
  font-family: monospace;
  margin: 0;
  text-align: center;
}

.box {
  border: 2px solid black;
  padding: 5px;
  margin: 5px;
  height: 500px;
}

.grid-container {
  display: grid;
  grid-template-areas: "col1 col2 col2 col2 col2 col2";
}

#g1 {
  grid-area: col1;
}

#g2 {
  grid-area: col2;
}

.homebutton {
  width: 121px;
  height: 46px;
  position: fixed;
  bottom: 20px;
  left: 20px;
}

.entry {
    display: none;
}

.entry:target {
    display: block;
}