body {
  
  background-image: url("https://birdcrossing.neocities.org/Greentile.jpeg");
  background-repeat: repeat;
  background-size: 6em 6em;
  background-color: #131d00;
  opacity: 1;
  box-shadow: inset 30px 30px 30px 30px rgba(0, 0, 0, 0.61);
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
  margin: auto;
}

h1,
h2,
h3 {
  color: lime;
  text-align: center;
  font-family: "Times New Roman", sans-serif, monospace;
}

h1 {
  font-size: 50px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 20px;
}

p,
ul,
ol {
  color: #4caa30;
  font-family: "pixeloperator", ;
  font-size: 20px;
}

a {
  color: #99e600;
  font-family: "Times New Roman", sans-serif, monospace;
  text-decoration: underline;
}

:root {
  --header-image: url();
  --body-bg-image: url();
  --content: lime;
}

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

#header {
  width: 100%;
  background-color: #131d00;
  height: 150px;
  background-image: var(--header-image);
  background-size: 100%;
  border: 1px solid lime;
  box-shadow: inset 10px 10px 150px 32px rgba(0, 0, 0, 0.61);
}

#navbar {
  height: 50px;
  background-color: #1b7d31;
  width: 100%;
}

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

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

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

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

#flex {
  display: flex;
}

#aside {
  background-color: #003d0d;
  width: 150px;
  padding: 5px;
  font-size: small;
  border: 1px solid lime;
  box-shadow: inset 10px 10px 150px 32px rgba(0, 0, 0, 0.61);
}

#main {
  background-color: #131d00;
  flex: 1;
  padding: 30px;
  order: 2;
  border: 1px solid lime;
  font-size: calc(1rem + 2vw);
  text-align: center;
  height: 800px;
  overflow: scroll;
  box-shadow: inset 10px 10px 150px 32px rgba(0, 0, 0, 0.61);
}

#left-Sidebar {
  order: 1;
}
#right-Sidebar {
  order: 3;
}

#footer {
  background-color: #002633;
  color: lime;
  width: 100%;
  height: 30px;
  padding: 3px;
  text-align: center;
  border: 1px solid lime;
  overflow: auto;
  box-shadow: inset 10px 10px 150px 32px rgba(0, 0, 0, 0.61);
}

.box {
  font-size: calc(1rem + 2vw);
  text-align: left;
  background-color: #002633;
  border: 1px dotted lime;
  padding: 5px;
  height: 200px;
  overflow: auto;
  box-shadow: inset 10px 10px 150px 32px rgba(0, 0, 0, 0.61);
}

#topBar {
  width: 100%;
  height: 30px;
  padding: 10px;
  font-size: smaller;
  background-color: lime;
}
@media only screen and (max-width: 900px) {
  #flex {
    flex-wrap: wrap;
  }
  aside {
    width: 100%;
  }
}

@media only screen and (max-width: 1100px) and (min-width: 601px) {
  #left-sidebar {
    width: 35vw !important;
    min-width: 0 !important;
    max-width: 50vw !important;
  }

  #content-container {
    width: 60vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
  }
}
@media only screen and (max-width: 600px) {
  #flex {
    display: flex;
    flex-direction: column;
  }
  #aside {
    width: 100%;
    order: 1;
  }
  #main {
    width: 100%;
    order: 2;
    height: auto;
  }
}

/*CRT filter*/

body {
  text-shadow: 0 0 2px rgba(57, 255, 20, 0.3);
  animation: flicker 3s infinite;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0px,
    rgba(0, 0, 0, 0.25) 1px,
    transparent 2px,
    transparent 4px
  );
  mix-blend-mode: overlay;
  z-index: 999;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.9);
  z-index: 998;
}

h1,
h2,
h3,
a {
  text-shadow: 0 0 5px lime, 0 0 5px lime;
}

a:hover {
  animation: pulse 0.6s infinite alternate;
}

#main,
#aside,
#header,
#footer {
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.9), 0 0 10px lime;}


@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }}
  
@keyframes blink {
  50% {
    border-color: transparent;}}
    
@keyframes pulse {
  from {
    text-shadow: 0 0 5px lime;
  }
  to {
    text-shadow: 0 0 15px lime, 0 0 25px lime;
  }}
  
@keyframes wobble {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0.5px, -0.5px);
  }}

@font-face
{ font-family: pixeloperator; src: url("https://birdcrossing.neocities.org/Fonts/Pixel-operator/PixelOperator.ttf") format("truetype"); }




/* end */
