body {
  background-color: #140096;
  background-image: linear-gradient(45deg, #1d00d6 25%, transparent 25%, transparent 75%, #1d00d6 75%), linear-gradient(45deg, #1d00d6 25%, transparent 25%, transparent 75%, #1d00d6 75%);
  background-size: 40px 40px;
  background-position: 10px 10px, 30px 30px;
  animation: scrolling 2s infinie linear;
}

.page {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px;
  font-family: "Audiowide";
}

a {
  color: blue;
}
a:hover {
  background-color: blue;
  color: black;
  transition: all, 0.5s;
}

.banner {
  height: auto;
  width: 1400px;
}

.tenna {
  height: auto;
  width: 200px;
}

@font-face {
  font-family: Audiowide;
  src: url("https://nocturnecreature.neocities.org/Audiowide/Audiowide-Regular.ttf");
}

header {
  border: 2px solid blue;
  background-color: black;
  color: white;
  width: 1400px;
  text-align: center;
  box-shadow: 5px 2px blue;
}

nav {
  border: 2px solid blue;
  background-image: linear-gradient(to top, black, #0a0882);
  color: white;
  order: 2;
  width: 200px;
  box-shadow: 5px 2px blue;
  height: 500px;
  overflow: auto;
}

aside {
  border: 2px solid blue;
  background-image: linear-gradient(to top, black, #0a0882);
  color: white;
  order: 4;
  width: 200px;
  box-shadow: 5px 2px blue;
  height: 500px;
  overflow: auto;
  text-align: right;
}

main {
  border: 2px solid blue;
  background-image: linear-gradient(to top, black, #0a0882);
  color: white;
  order: 3;
  width: 800px;
  box-shadow: 5px 2px blue;
}

footer {
  border: 2px solid blue;
  background-image: linear-gradient(to top, black, #0a0882);
  color: white;
  order: 5;
  width: 2000px;
  text-align: center;
  box-shadow: 5px 2px blue;
}