body{ 
background: black;

background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
background-position: left;
margin: 10 0 0 0;
  color: white;
  font-family: 'Arial';
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    image-rendering: pixelated;
}

h1{text-align: center;
color:green;
font-weight: 800;
text-decoration: none;}
h2{text-align: center;}
p{text-align: left;}
ul{list-style-image: none;}
li{list-style-image: none;}
div{}
img{text-align: center;}
form{text-align: right;}
button{text-align: center;
  margin: auto; 
  padding:2px;}
a:link {color: white;}
a:visited {color: purple;}
a:hover {color: yellow;}
a:active {color: black;}

.button {
  border: white dotted;
  background: rgba(0, 0, 0, 0.2);
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

header {text-align: center;}      

footer {}


.border {justify-content:center; 
  box-sizing: border-box; 
  width: 400px; 
  margin-left: auto; 
  margin-right: auto;}

.container {
  display: flex;
  flex-wrap: wrap;
}

.container div {
  margin: 10px;
  padding: 5px;
}

.scroll-left {
 height: 40px;	
 overflow: hidden;
 position: relative;
 background: green;
 color: white;
 border: 1px dotted white;
}
.scroll-left p {
 position: absolute;
 width: 200%;
 height: 100%;
 margin: 0;
 line-height: 40px;
 text-align: left;
 /* Starting position */
 transform:translateX(100%);
 /* Apply animation to this element */
 animation: scroll-left 15s linear infinite;
}
/* Move it (define the animation) */
@keyframes scroll-left {
 0%   {
 transform: translateX(50%); 		
 }
 100% {
 transform: translateX(-100%); 
 }
}

/* the "container" is what wraps your entire website */
            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
            #container {
                max-width: 900px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                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: white;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

            #header {
                width: 100%;
                background-color: black;
                /* header color here! */
                /* this is only for a background image! */
                /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
                background-image: var(--header-image);
                background-size: 100%;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #000000;
                /* 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: green;
                /* 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: white;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }
            
                        #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: black;
                border: 1px solid #F1F1F1;
                width: 200px;
                padding: 10px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: black;
                 border: 1px solid #F1F1F1;
                flex: 1;
                padding: 24px;
                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;
            }
            
            img.thatimage{
    max-width: 100%;
    min-width: 300px;
    height: auto;}
