  
/* LAYOUT */
#container {  
  border: 7px solid black;
  max-width: 1000px;
  max-height: 0 auto;
  margin: 0 auto;
}

#container a {
  text-shadow: 1px 1px 4px #000000;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}
#container a:hover {
  text-shadow: 2px 2px 4px #000000;
  color: #ffffff;
  font-weight: bold;
}
.header {
  background-color: #232323;
  width: auto;
  height: 130px;
  text-align: center;
  margin: 0 auto;
}
footer {
  background-color: #232323;
  width: auto;
  height: 40px;
  text-align: center;
  color: #000000;
  margin: 0 auto;
}

main {
  background-image: black;
  background-color: black;
  border: inset 7px #181818;
  width: 0 auto;
  height: 600px;
  flex: 1;
  padding: 10px;
  margin: 0 auto;
}
body {
  margin: 0;
  padding: 20px;
  background-image: url("https://kruzidula.neocities.org/Images/brown055.gif");
  background-size: 15%;
  font-family: 'Times New Roman', serif;
}

aside {
  background-color: #232323;
  width: 40px;
  padding: 0;
  font-size: smaller;
}
/*TEXT*/
body {
  color: khaki;
}

h1 {
  margin: 0 auto;
  color:goldenrod; 
  
}
 h2 {
   margin: 0 auto;
  font-size: 20px;
   color:  goldenrod;
   
}
 h3 {
   color: ;
}
 strong {
}
/*MISC*/
 

table, th, td {
  border: 0px solid transparent;
}
.SCROLL-FULL{
  /*needs to corelate to MAIN height*/
  height: 600px;
  margin: 0 auto;
  overflow: auto;
}
.SCROLL{
  height: 150px;
  overflow: auto;
}
.box {
 background-color: #5A6A83;
 border: 3px solid #000000;
 font-size: 14px;
 padding: 5px;
 margin-top: 10px;
}
.topnav {
  /*if width doesnt function u did something wrong*/
  /*anything to do with Position refer to This page https://www2.cs.sfu.ca/CourseCentral/165/common/study-guide/content/css2-positioning.html*/
  width: 200px;
  padding: 5px;
  overflow: hidden;
  background-color: #2B313C;
  border: 8px outset #22252C;
  text-align: center;
  margin: 0 auto;
 
}
.topnav ul {
  
  padding: 0;
  margin: 10 px;
  list-style-type: none;
  justify-content: space-evenly;
}
/* THE BUTTON */
.button {
  width: 150px;
  background-color: saddlebrown; 
  color: goldenrod; 
  border: 3px solid #000000;
  padding: 4px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: 'times';
  box-shadow: 2px 2px #250606;
  font-size: 13px;
  margin: 5px 5px;
  transition-duration: 0.0s;
  cursor: pointer;
}

.button1:hover {
  background-color:#000000;
  color: #ffffff;
  border: 3px solid #000000;
  box-shadow: 0px 0px #ffffff;
}

/*THINGS that are important.. i think*/
#flex {
  display: flex;
}
*/ #leftSidebar {
 order: 1;
}
 #rightSidebar {
 order: 3;
}

/* container width - 100= X (= functioning)*/
/*MAIN CONTROLES HEIGHT*/
/*CONTAINER CONTROLES WIDTH*/
  @media only screen and (max-width: 900px)
          {
                #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;
 }