:root {
                --header-image: url('./images/gazebo 19_crop.jpg');
            }

            /* if you have the URL of a font, you can set it below */
            /* feel free to delete this if it's not your vibe */

            /* this seems like a lot for just one font and I would have to agree 
    but I wanted to include an example of how to include a custom font.
    If you download a font file you can upload it onto your Neocities
    and then link it! Many fonts have separate files for each style
    (bold, italic, etc. T_T) which is why there are so many!
    
    */

@font-face {
	font-family: assistant;
	src: url('./fonts/assistant-latin-400-normal.woff');
	}

@font-face {
	font-family: assistant;
	src: url('./fonts/assistant-latin-700-normal.woff');
	font-weight: bold;
	 }

 body {
	margin: 0;
	background-color: #000000;
	font-family: assistant;
	}

 * {
	 box-sizing: border-box;
	 }
	 
img {
  max-width: 100%;
  height: auto;
}

/* below this line is CSS for the layout */

/* this is a CSS comment to uncomment a line of CSS, remove the * and the / before and after the text */

  
  /*POST LIST STYLE*/
#postlistdiv ul {
  padding: 0;
  list-style-type: none;
}
#recentpostlistdiv ul {
	padding: 0;
  list-style-type: none;
}

/*NEXT AND PREVIOUS LINKS STYLE*/
#nextprev {
  text-align: center;
 }

            /* below this line is CSS for the layout */

            /* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */


            /* 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 */
	background-color: #EDF2F4FF;
	  }

/* the area below is for all links on your page EXCEPT for the navigation */
#content a {
	color: #2B2D42FF;
	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: #2B2D42FF;
	/* 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-size: 100%;
	}
	
#headerImg {
	display: flex;
	justify-content: center;
}

/* navigation section!! */
#navbar {
	height: 40px;
	background-color: #F8A5AFFF;
	/* navbar color */
	width: 100%;
	font-family: 'assistant';
	color: #000000;
	}

#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;
	/* this removes the underline */
	text-decoration: none;
	}

/* navigation link when a link is hovered over */
#navbar li a:hover {
	text-decoration: underline;
	}

#flex {
	display: flex;
	}

#footer a {
	color: #2B2D42FF;
	font-weight: bold;
	/* if you want to remove the underline you can add a line below here that says: text-decoration:none; */
	}
	
#footer {
	background-color: #A6031EFF;
	/* background color for footer */
	width: 100%;
	height: 40px;
	padding: 10px;
	text-align: center;
	/* this centers the footer text */
	font-family: 'assistant';
    color: #EDF2F4FF;
	font-size: smaller;
	}
	
/*
Source - https://stackoverflow.com/a/10422535
Posted by Christopher Marshall, modified by community. See post 'Timeline' for change history
Retrieved 2026-02-24, License - CC BY-SA 4.0
*/

p {
    font-family: 'assistant';
    color: #2B2D42FF;
}


h1,
h2,
h3,
h4 {
	font-family: 'assistant';
	color: #2B2D42FF;
	}

/* 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: 800px) {
	#flex {
		flex-wrap: wrap;
		}
}