/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

.neocities-image-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}


:root {
  --header-image: url('HatsuneMiku.png');
  --body-bg-image: url('HatsuneMiku.png');

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

body {
  background-color: #08031A;
  color: black;
  font-family: 'quicksandbold', sans-serif;
  margin: 0;
  /*delete the line below if you'd prefer to not use an image */
  background-size: 500px;
  /* this is actually the p or body color the line above this formerly: fceaff*/        
  box-sizing: border-box;
}

.container{
  display: flex;
  flex-direction: column;
  padding: 3rem 3rem 5rem 3rem;
  gap: 1rem;
}


.parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.div1 { grid-area: 2 / 2 / 5 / 5; }

.content{
  padding: 1rem;
}
 
.subheaders{
  background-color: #000;
  color: #ffffff;
  border-bottom: 3px ridge #C09657;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 16px;
}



/* below this line is CSS for the layout */




/* 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 */
}

/* Links colors EXCEPT for the navigation */
#container a {
  color: #7c64f5;
  font-weight: bold;
/* if you want to remove the underline you can add a line below here that says: text-decoration:none; */
}
      
/* The Top UI Header */
#header {
  width: 100%;
  background-color: #ADD8E6;
/* header color here! */
  height: 200px;
/* 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: url("HatsuneHeader.png");
  background-size: 100%;
}

/* navigation section!! */
#navbar {
  height: 40px;
  background-color: #ffa1af;
/* 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: #000000;
  /* 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: #dd1717;
  background-color: white; /* Changes the background color (highlight) */
}

#flex {
  display: flex;
}

/* this colors BOTH sidebars if you want to style them separately, create styles for #leftSidebar and #rightSidebar */
aside {
  background-color: #ADD8E6;
  width: 200px;
  padding: 20px;
  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: #92E4AF;
  flex: 1;
  padding: 20px;
  order: 2;
  height:600px;
  overflow: auto;
}

/* 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: #0d9eff;
/* background color for footer */
  width: 98%;
  height: 30px;
  padding: 10px;
  text-align: center;
/* this centers the footer text */
}

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

h1 {
  font-size: 25px;
}

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

/* Box in the Left Side Bar*/
.box {
  background-color: #BFF4FF;
  border: 1px solid #000000;
  padding: 10px;
}

/* CSS for extras */

#topBar {
  width: 100%;
  height: 30px;
  padding: 10px;
  font-size: smaller;
  background-color: #13092D;
}




/* BELOW THIS POINT IS MEDIA QUERY */

    /* to 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: 800px) {
  #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;
  }
}

/*

  @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
            }

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
                font-weight: bold;
            }

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
                font-style: italic;
            }

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
                font-style: italic;
                font-weight: bold;
            }

            body {
                font-family: 'Nunito', sans-serif;

*/






