body {
  margin:0px;
  padding:0px;
  background-image: url('stars3.webp');
  background-color: #554460;
  color: #d8d4e2;
  font-family: Verdana;
  font-size: max(1rem, 16px);
  line-height: 1.5;
  image-rendering: pixelated;
}

#header {
  margin-bottom: 0px;
  background-color:#14113f;
}

#footer {
  height:30px;
  margin-top: 5px;
  text-align:center;
  background-color:#14113f;
}

#flex {
  display: flex;
}

#navbar {
  height:45px;
  text-align:center;
  background-color:#14113f;
  margin-bottom:5px;
}

#navbar ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}

#navbar li {
  padding-top: 10px;
}

#navbar li a {
  color: #ae6fe1;
  font-weight: 800;
  text-decoration: none;
}

#navbar li a:hover {
  color: #bd90e1;
  text-decoration: underline;
}

aside {
  background-color: #241445;
  width: 250px;
  padding: 20px;
  font-size: max(1rem, 16px);
}

main {
  width:60%;
  background-color:#43256E;
  flex: 1;
  padding: 20px;
  order: 2;
}

#fullImg {
  display: block;
  width: 100%;
  height: auto;
}

#leftSidebar {
  order: 1;
}

#container {
  max-width: 1000px;
  margin: 0 auto;
}

#container a {
  color: #ED64F5;
  font-weight: bold;
  text-decoration:none;
  filter: brightness(1.0);
  transition: filter 1.2s ease-out, text-shadow 1.8s ease-out;
}

#container a:hover {
  text-decoration:none;
  filter: brightness(1.1);
  text-shadow: #e9beeb 1px 0 8px;
  transition: text-shadow 0.4s ease-in, filter 0.1s ease-in;
}


.box {
  background-color: #13092D;
  border: 1px solid #ED64F5;
  padding: 10px;
}

.pixel {
  image-rendering: pixelated;
}

.sitebutton {
  image-rendering: pixelated;
  height: 62px;
}

.warning18 {
  height: 62px;
  position: absolute;
  left: 0;
  top: -46px;
  image-rendering: pixelated;
  opacity: 0.0;
  transition: opacity 1.2s ease-out;
}

.warning18:hover {
  opacity:0.6;
  transition: opacity 0.3s ease-in;
}

@media only screen and (max-width: 800px) {
  #flex {
    flex-wrap: wrap;
  }
  aside {
    width: 100%;
  }
  main {
    order: 1;
  }

  #leftSidebar {
    order: 2;
  }

  #rightSidebar {
    order: 3;
  }
  #navbar ul {
    flex-wrap: wrap;
  }
  
  #footer {
    order: 4;
  }
}