html {
  overflow: scroll;
  overflow-x: hidden;
}

body {
  background-image: url(https://vanillaneocities.carrd.co/assets/images/image04.jpg?v=1048d592);
  background-attachment: fixed;
  background-size: 2000px;
  background-repeat: no-repeat;
  color: hotpink;
  text-shadow: pink 2px 2px 5px;
  font-size: 20px;
}

body::before {
    content: " ";
    opacity: 70%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgb(82 15 15 / 48%) 50%, rgb(0 0 0 / 0%) 50%);
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

/* unvisited link */
a:link {
  color: hotpink;
}

/* visited link */
a:visited {
  color: hotpink;
}

/* mouse over link */
a:hover {
  color: lightskyblue;
}

/* selected link */
a:active {
  color: hotpink;
}

hr {
  color: white;
}


header {
  border: ghostwhite 5px outset;
  grid-column: 1/3;
  grid-row: 1/2;
  background-color: ghostwhite;
}

nav {
  border: ghostwhite 5px outset;
  grid-column: 1/2;
  grid-row: 2/3;
  background-color: ghostwhite;
}

main {
  border: ghostwhite 5px outset;
  grid-column: 2/3;
  grid-row: 2/3;
  background-color: ghostwhite;
  padding-right: 5px;
}

footer {
  border: ghostwhite 5px outset;
  grid-column: 1/3;
  grid-row: 3/4;
  background-color: ghostwhite;
}

.container {
  max-width: 1000px;
  margin: 5px auto;
  display: grid;
  grid-gap: 5px;
}