body {
background-image: url('https://blob.gifcities.org/gifcities/RJ27BMRJOZHNI6LC3ECKAK7EJMS3GQQ6.gif');
background-attachment: fixed;
background-repeat: repeat;
overflow: hidden;
}

.blinkie-1, .blinkie-2, .blinkie-3, .blinkie-4 {
  display:block;
  margin:auto;
}

.container {
  max-width: 1000px;
  margin: 50px auto;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 300px minmax(0, 1fr);
}

.worm-divider {
  background: url("gifs/wroms.gif") repeat-x top right;
  border: none;
  height: 35px;
  background-size: contain;
  display: block;
  position: relative;
}


header, nav, main, footer {
  border: 5px double midnightblue;
  background-color:#15152D;
  color: #9494D3;
  padding: 10px;
  font-family: "Pangolin", cursive;
  font-weight: 400;
  font-style: normal;
}

header {
 grid-row: 1 / 2;
 grid-column: 1 / 3;
 text-align: center;
}

nav {
 grid-row: 2 / 3;
 grid-column: 1 / 2;
 height: max-content;
h3 { 
  text-align: center;
}
}

main {
 grid-row: 2 / 3;
 grid-column: 2 / 3;
 height: max-content;
 text-align: center;
}

footer {
 border-radius: 25px;
 grid-row: 3 / 4;
 grid-column: 1 / 3;
 text-align: center;
}