/*MISC*/
.SCROLL-FULL{
  /*needs to corelate to MAIN height*/
  height: 375px;
  margin: 0 auto;
  overflow: auto;
}
.SCROLL{
  height: 150px;
  overflow: auto;
}
table, th, td {
  padding: 5px;
  margin-right: 100px;
}


  
.box {
  background-color: #000000;
 border-radius: 3px;
 border: 1px solid #ffffff;
 padding: 10px;
}
.box2 {
  background-color: #000000;
 border-radius: 0px;
 border: 1px solid #000000;
 padding: 10px;
 margin-top: 10px;
 margin-bottom: 10px;
}

/* THE BUTTON */
.button {
  width: 100px;
  background-color:#000000; 
  color: #ffffff; 
  border: 3px double #ffffff;
  border-radius: 5px;
  padding: 4px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: 'times';
  font-size: 13px;
  margin: 5px 5px;
  transition-duration: 0.0s;
  cursor: pointer;
}

.button1:hover {
   background-color:#000000;
  color: #ffffff;
  border: 3px solid #ffffff;
  font-weight: bold;
}

/* LAYOUT */
#container {  
  border: 5px solid #000000;
  max-width: 900px;
  max-height: auto;
  margin: 0 auto;
}

#container a {
  text-decoration: none;
 
}
#container a:hover {
  text-decoration: none;
  
}
.header {
  background-color: #000000;
  width: auto;
  height: 40px;
  padding: 5px;
  text-align: center;
  margin: 0 auto;
}
.topnav {
  width: auto;
  padding: 0px;
  overflow: hidden;
  background-image: url("https://kruzidula.neocities.org/Images/board_big.gif");
  background-color: #3E4651;
  border: 8px solid #000000;
  text-align: center;
  margin: 0 auto;
  
}
.topnav ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}
main {
  
  background-image: url("https://kruzidula.neocities.org/Images/comp016.gif");
  background-color: #000000;
  width: 900px;
  height: 620px;
  flex: 1;
  padding: 5px;
  margin: 0 auto;
}
body {
  margin: 0;
  background-color: black;
  background-size: 30%;
  font-family: 'Courier New', monospace;
  color: #ffffff;
}
footer {
  background-color: #000000;
  width: 874px;
  height: 10px;
  padding: 5px;
  border: 8px double #000000;
  text-align: center;
  color: #bababa;
  margin: 0 auto;
}
.SCROLL{
  height: 150px;
  overflow: auto;
}
.boxout1 {
 background-color: #000000;
 border-radius: 5px;
 border: 1px double #ffffff;
 color: #ffffff;
 font-size: 14px;
 padding: 2px;
 margin: 10px;
}
.boxout2 {
 background-color: #000000;
 border-radius: 5px;
 border: 1px double #ffffff;
 color: #ffffff;
 font-size: 14px;
 padding: 5px;
}
.box {
 background-color: #000000;
 border-radius: 3px;
 border: 1px solid #ffffff;
 color: #ffffff;
 font-size: 14px;
 padding: 5px;
}
.divider {
  background-color: #000000;
  width: auto;
  height: 10px;
}
/*TEXT*/
h1 {
  font-size: 30px;
  color: #ffffff;
   margin: 0 auto; 
   padding: 0px;
}
 h2 {
   margin: 0 auto;
  font-size: 20px;
  color: #ffffff;
}
 h3 {
  font-size: 20px;
   color: white;
  margin: 0 auto; 
   padding: 0px;
}
a :hover {
  color: #000;
  text-shadow: -1px -1px 0 blue, 1px -1px 0 red, -1px 1px 0 lime, 1px 1px 0 cyan ;
}
 strong {
  color: #ffffff;
}

/*SIDE BAR THINGS*/
#flex {
  display: flex;
}
aside {
  background-color: #000000;
  width: 30px;
  padding: 10px;
  font-size: smaller;
  color: #ffffff;
}
*/ #leftSidebar {
 order: 1;
}
 #rightSidebar {
 order: 3;
}

/* by default, the container width is 900px.
    in order to keep things responsive subtrack it by 100
    */
  @media only screen and (max-width: 800px) (max-height: 980px;) 
          {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 50%;
                }

                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
 }