:root {

                /* colors */
                --content: #000000;
            }

        

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #000000;
    }

            
#container {
  max-width: 900px;
  margin: 0 auto;
                /* this centers the entire page */
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: #000000;
                font-weight: bold;
          		text-decoration: none;

                
       		#container li a: hover {
            	color: #ecbe44
                text-decoration: none
                
            }
            
            
            
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }
            

 #header {
                width: 100%;
                background-color: #25468e;
			         	height: 170px;
                background-image: url("https://endless-cycles.org/img/headers/main/TITLE.png"), url("https://endless-cycles.org/img/headers/SKY.png");
                background-size: contain ,cover;
                background-repeat: no-repeat;
                background-position-x: center;
            }

            
            /* navigation section!! */
            #navbar {
                height: 40px;
                  background-color: #0f1e3e;
                /* navbar color */
                width: 100%;
            }

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

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

            /* navigation links*/
            #navbar li a {
                color: #3cb4dd;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #da72a9;
                text-decoration: none;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: #25468e;
                width: 200px;
                padding: 20px;
               
                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: #a9e0e0;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            /* what's this "order" stuff about??
    allow me to explain!
    if you're using both sidebars, the "order" value
    tells the CSS the order in which to display them.
    left sidebar is 1, content is 2, and right sidebar is 3! */

            */ #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

        		/* Style the footer */
        		footer {
        		  background-color: #0f1e3e;
        		  padding: 5px;
                  height: 50px;
        		  text-align: center;
        		  color: #3cb4dd;
        		}

            h1,
            h2,
            h3 {
                color: #000000;
            }

            h1 {
                font-size: 25px;
            }

            strong {
                /* this styles bold text */
                color: #000000;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #a9e0e0;
                border: 2px solid #152a56;
                padding: 10px;
            }

            /* CSS for extras */




/*media query*/
@media only screen and (max-width: 800px) {
  #flex {
     flex-wrap: wrap;
         }

aside {
	  width: 100%;
  	  }


/*layout order*/
                #main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }


 .gallery img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 2px solid #000000;
  background: #3cb4dd;
  margin: 2px;
}


/*update boxes*/            
#startcontainer{
  position: relative;
  font-family: Arial;
  border: 2px solid #000000;
}


#starttext{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  border: 2px solid #000000;

}           


#updatecontainer {
  position: relative;
  font-family: Arial;
  border: 2px solid #000000;
}


#updatetext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: ffffff;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  border: 2px solid #000000;

}           


/*text boxes*/
.explanation {
  box-sizing: border-box;
  background-color: #ffffff;
  color: #000000;
  padding: 0.2em;
  padding-left: 20px;
  padding-right: 20px;
  border: 2px solid #152a56;
}

            