:root {
  --header-image: url('https://sadhost.neocities.org/images/layouts/wp.jpeg');
  --body-bg-image: url(https://qwerensia.neocities.org/bgif094.gif);

  /* colors */
  --content: #b01c52;
}

body{
  background-image: url(https://qwerensia.neocities.org/greengrid.jpg);
  background-attachment: fixed;
}

/*fonts*/
@font-face {
  font-family: 'Twentieth';
  src: url('https://qwerensia.neocities.org/TwentiethCenturyforKenmoreN.ttf');
}

@font-face{
 font-family: 'Twentieth'
 src: url('https://qwerensia.neocities.org/TwentiethCenturyforKenmoreNBold.ttf');
 font-weight:bold;
}

body {
  font-family: 'Twentieth';
  margin: 0;
  background-color: #08031A;
  background-size: 65px;
  color: #e880a2;
/* you can delete the line below if you'd prefer to not use an image */
}

* {
  box-sizing: border-box;
}

/* the "container" is what wraps your entire website */
#container {
  max-width: 1200px;
   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: #ffffff;
  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%;
  color:white;
  
/* header color here! */
  height: 150px;
  text-align: center;  

/* navigation section!! */
#header-navbar {
  height: 40px;
  background-color: #e04a89;
  /* navbar color */
  width: 100%;
}

#header-navbar ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}

#header-navbar li {
  padding-top: 10px;
}

/* navigation links*/
#header-navbar li a {
  color: #ffffff;
  /* navbar text color */
  font-weight: 800;
  text-decoration: none;
  /* this removes the underline */
}

/* navigation link when a link is hovered over */
#header-navbar li a:hover {
  color: #e3919f;
  text-decoration: underline;
}

#flex {
  display: flex;
}

  /* this colors BOTH sidebars
  if you want to style them separately,
  create styles for #leftSidebar and #rightSidebar */
aside {
  background-color: #e693b0;
  color:#912f57;
  width: 200px;
  padding: 20px;
  font-size: smaller;
      /* this makes the sidebar text slightly smaller */
}

#site-update-h3{
  color:#ffffff;
}

#flex h1{
  color:#ffffff;
}

/* this is the color of the main content area,
    between the sidebars! */
main {
  background-color: #f0ccdb;
  flex: 1;
  padding: 20px;
  order: 2;
}

#welcome-oneline{
  color:#e04a89;
}

.todolist{
  color:#b01e5b;
}


            /* 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;
            }

            footer {
                background-color: #b01c52;
                /* background color for footer */
                color: #ffffff;
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */

            }
            
            .h1 {
                font-size: 25px;
                color: #ffffff;
            }
            
            .h2 {
              font-size: 25px;
                color: #ffffff;
            }
            
            .h3 {
                color: #ffffff;
            }
          

            .strong {
                /* this styles bold text */
                color: #e04a64;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #dafab1;
                border: 1px solid #ffffff;
                padding: 10px;
            }

            .scroll-example{;
              overflow: auto;
              height: 160px;
              background-color:#ffffff;
              border: 4px solid #e04a89;
              padding:10px;
              scrollbar-color: pink #dafab1;
            }

.site-updates{
  list-style:none;
  margin:0;
  padding:0;
}

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }


            /* BELOW THIS POINT IS MEDIA QUERY */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 1100px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

                /* 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;
                }
            }