body {
  display: block;
  background-image: url("https://giffiles.alphacoders.com/105/105022.gif");
  background-size: cover;
  background-repeat: no-repeat;
  color: black;
  margin: 100px;
  padding: 200px;
  letter-spacing: 1px;
}

div {
  display: block;
  unicode-bidi: isolate;
}

.vt323-regular {
  font-family: "VT323", monospace;
  font-weight: 400;
  font-style: normal;
}


.container {
  display: grid;
  grid-gap: 0px;
  grid-template:
    "header header"
    "sidebar main"
    "footer footer"
    / 100px 1fr;
}

header { grid-area: header; 
background-color: lightyellow;
}


aside { grid-area: sidebar; 
background-color: lightyellow;
border-style: groove;
}

main { grid-area: main; 
background-color: lightyellow;
padding: 3px;
border-width: 2px;
border-style: solid hidden hidden hidden;
}

footer { grid-area: footer;
color: white;
text-shadow: 0 0 5px black;
}

/*website stuff*/
mark {
  background-color: pink;
}
::selection {
    background: lightblue;
    color: white;
    text-shadow: 0 0 5px white;
}

/*centering text*/
.center{
  text-align: center;
}

/* corner img */
.sakura {
  float: left;
  position: fixed;
  bottom: 0;
  left: 0;
}

/* changing link images */
.link1 {
  color: blue;
}
.link1:hover {
  background-image: url("https://www.metacritic.com/a/img/catalog/provider/6/12/6-1-905921-52.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  color: pink;
}
.link1:hover a {
  color: black;
  text-shadow: 0px 0px 5px red;
}

.link2 {
  color: blue;
}
.link2:hover {
  background-image: url("https://preview.redd.it/netflix-removing-ccs-from-my-country-will-they-add-clear-v0-40atpxf9ge4d1.jpg?width=626&format=pjpg&auto=webp&s=1357ef76c0dcee6e4b170256cc277a8d00ec8734");
  background-size: cover;
  background-repeat: no-repeat;
  color: pink;
}
.link2:hover a {
  color: lightblue;
  text-shadow: 0px 0px 5px black;
}