            /* user styles */

            /* styles are what change the color and sizes of stuff on your site. */

            /* these are variables that are being used in the code
    these tended to confuse some people, so I only kept 
    the images as variables */
            :root {
                --header-image: url('https://i.pinimg.com/1200x/ff/2b/5c/ff2b5c1b42073e0f8f42292251cd0fcd.jpg');
                --body-bg-image: url('https://media1.giphy.com/media/v1.Y2lkPTc5MGI3NjExMWhoN2VnZWh2eTV6eDBqaGg4djZkb2JncXJrZGMybW4wejhzcDYyZyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/RMdRryac4JDr3dm38I/giphy.gif');
                /* colors */
                --dark-purple: #43256E;
				--very-dark-purple: #32174d;
				--light-pink: #ED64F5;
				--very-light-pink: #fceaff;
				--dark-blue: #241445;
            }

            /* 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: Nunito;
                /*src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');*/
                src: url('/font/Inter_28pt-Regular.ttf');
            }

            @font-face {
                font-family: Nunito;
                src: url('/font/Inter_28pt-Bold.ttf');
                font-weight: bold;
            }

            @font-face {
                font-family: Nunito;
                src: url('/font/Inter_28pt-Italic.ttf');
                font-style: italic;
            }

            @font-face {
                font-family: Nunito;
                src: url('/font/Inter_28pt-BoldItalic.ttf');
                font-style: italic;
                font-weight: bold;
            }

            body {
                font-family: 'Nunito', sans-serif;
                margin: 0;
                /*background-color: #08031A;*/
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 65px;
				/* The normal text on the whole website*/
                color: var(--very-light-pink);
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
				/*word-spacing: 2px;*/
            }


            /* 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 {
                /* 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! */
                max-width: 1000px;
                /* this centers the entire page */
				/* margins to left and right are determined automatically*/
                margin: 0 auto;
            }

            /* the area below is for all links on your page
				EXCEPT for the navigation */
            #container a {
                color: var(--light-pink);
                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%;
                height: 169px;
                /* 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: 55px;
                background-color: #13092D;
				/* Space between navbar and flex area*/
				margin-bottom: 10px;
                /* navbar color */
                width: 100%;
            }

			/*Arrangement of buttons in navbar*/
            #navbar ul {
                display: flex;
                padding: 0px;
                margin: 0;
                list-style-type: none;
                justify-content: flex-start;
            }

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

			#navbar li.navbar_toright {
				margin-left: auto;
			}

            /* navigation buttons themself*/
            #navbar li a {
				display: inline-block;
				/*Space from text to button outline*/
				padding: 5px 5px;
				background-color: var(--dark-purple);
				color: white;
				text-decoration: none;
				font-family: sans-serif;
				font-weight: bold;
				border-radius: 2px;
				box-shadow: 0 5px 0 var(--light-pink);  /* Creates 3D effect */
				transition: all 0.1s ease;
				position: relative;
				top: 0;
            }

			#back_button_line a {
				color: white;
			}

			#nav_backbutton {
				display: inline-block;
				padding: 5px 5px;
				background-color: var(--dark-purple);
				color: white;
				text-decoration: none;
				font-family: sans-serif;
				font-weight: bold;
				border-radius: 2px;
				box-shadow: 0 5px 0 var(--light-pink);  /* Creates 3D effect */
				transition: all 0.1s ease;
				position: relative;
				margin-bottom: 20px;
				top: 0;
			}

			#nav_backbutton:hover {
                color: #a49cba;
				top: 1px;
			}


            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #a49cba;
				top: 1px;
            }

            #flex_area {
                display: flex;
            }


            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: var(--dark-blue);
                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 {
				/* The background of the content area */
				background-color: var(--very-dark-purple);
                flex: 1;
                padding-left: 20px;
                padding-top: 10px;
                padding-right: 20px;
                padding-bottom: 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;
            }

            footer {
                background-color: #13092D;
                /* background color for footer */
                width: 100%;
                height: 33px;
                padding: 5px;
                text-align: left;
                /* this centers the footer text */
            }


            h1,
            h2,
            h3 {
                color: var(--light-pink);
            }

            h1 {
                font-size: 25px;
            }

			h1 {
				border: 3px solid #13092D;  /* Darker blue border */
				background-color: var(--dark-blue);  /* Darker blue border */
				color: #b8a0ae;
				padding: 15px 25px;
				border-radius: 10px;
				box-shadow: 0 4px 6px rgba(0,0,0,0.1);  /* Subtle shadow */
				font-family: sans-serif;
				display: inline-block;
			}

			#post_content h2, #post_content h3 {
				color: #00e0d1;
				position: relative;
				padding-bottom: 5px;
				padding-top: 30px;
			}

			#post_content h2::after, #post_content h3::after {
				content: '';
				position: absolute;
				bottom: 0;
				left: 0;
				width: 100%;
				height: 2px;
				background: linear-gradient(90deg, #00e0d1, transparent);
			}

			#post_content img.img_max {
				width: 95%
			}
			#post_content img.img_mid {
				width: 70%
			}
			#post_content img.img_small {
				width: 50%
			}

			#post_content iframe.yt_video {
				width: 431;
				height: 242;
			}

			/*Overview page of every collection*/
			.post_overview_link {
                display: flex;
				align-items: baseline;
				flex-wrap: wrap;
			}
			h3.post_date {
                color: #997a8d;
				width: 150px;
				margin-top: 0;
				margin-bottom: 10px;
			}
			h2.post_link {
				flex: 1;
				margin-bottom: 10px;
				margin-top: 0;
				word-break: break-word;
			}

            strong {
                /* this styles bold text */
                color: var(--light-pink);
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #13092D;
                border: 1px solid var(--light-pink);
                padding: 10px;
            }

			.other_socials_box {
				display: flex;
				flex-wrap: wrap;
				gap: 3px;
			}

			.social_icon {
				border-radius: 100%;
				transition: filter 0.2s ease;
				width: 32;
				height: 32;
			}
			.social_icon:hover {
				filter: brightness(0.5);
			}

			.button_oldschool:hover {
				filter: brightness(0.5);
			}

			.steamgame_thumbnail {
				border-radius: 8px;
				box-shadow: 0 4px 8px rgba(0,0,0,0.2);
			}

			.steamgame_thumbnail:hover {
				filter: brightness(0.7);
			}

			.social_tooltip {
				visibility: hidden;
				max-width: 150px;
				word-wrap: break-word;
				word-break: break-word;
				display: flex;
				flex-wrap: wrap;
				background-color: black;
				color: #fff;
				text-align: left;
				border-radius: 6px;
				padding: 5px 5px;
				position: absolute;
				z-index: 1;
			}
			a:hover .social_tooltip {
				visibility: visible;
			}

			.post_title_line {
				border: 0;
				height: 2px;
				background: #ff00ff;
				box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
				margin: 0px 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 screen and (max-width: 450px) {
				#navbar ul {
                	justify-content: space-evenly;
				}    
				#navbar li {
					padding-top: 10px;
					padding-right: 3px;
					padding-left: 3px;
				}
				#navbar li.navbar_toright {
					margin-left: 0;
				}
				#navbar li a {
					/* Fitting navbar button into smaller screens */
					font-size: 15;
				}
                aside {
                    width: 100%;
					background-color: unset;
                }

				#post_content img.img_max, #post_content img.img_mid, #post_content img.img_small {
					width: 100%
				}

				#post_content iframe.yt_video {
					width: 100%;
				}
			}
            @media only screen and (max-width: 800px) {
                #flex_area {
                    flex-wrap: wrap;
                }
                aside {
                    width: 100%;
					background-color: unset;
                }

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

/**
 * atom-dark theme for `prism.js`
 * Based on Atom's `atom-dark` theme: https://github.com/atom/atom-dark-syntax
 * @author Joe Gibson (@gibsjose)
 */

code[class*="language-"],
pre[class*="language-"] {
	color: #c5c8c6;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	font-family: Inconsolata, Monaco, Consolas, 'Courier New', Courier, monospace;
	direction: ltr;
	text-align: left;
	white-space: pre-wrap;
	overflow-wrap: anywhere;
	overflow: hidden;
	word-spacing: normal;
	word-break: normal;
	line-height: 1.5;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
	border-radius: 0.3em;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: #1d1f21;
}

/* Inline code */
:not(pre) > code,
:not(pre) > code[class*="language-"] {
	background: #1d1f21;
	color: #c5c8c6;
	padding: 0.2em 0.4em;
	border-radius: 0.3em;
	white-space: pre-wrap; /* preserves formatting but allows wrapping */
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #7C7C7C;
}

.token.punctuation {
	color: #c5c8c6;
}

.namespace {
	opacity: .7;
}

.token.property,
.token.keyword,
.token.tag {
	color: #96CBFE;
}

.token.class-name {
	color: #FFFFB6;
	text-decoration: underline;
}

.token.boolean,
.token.constant {
	color: #99CC99;
}

.token.symbol,
.token.deleted {
	color: #f92672;
}

.token.number {
	color: #FF73FD;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #A8FF60;
}

.token.variable {
	color: #C6C5FE;
}

.token.operator {
	color: #EDEDED;
}

.token.entity {
	color: #FFFFB6;
	cursor: help;
}

.token.url {
	color: #96CBFE;
}

.language-css .token.string,
.style .token.string {
	color: #87C38A;
}

.token.atrule,
.token.attr-value {
	color: #F9EE98;
}

.token.function {
	color: #DAD085;
}

.token.regex {
	color: #E9C062;
}

.token.important {
	color: #fd971f;
}

.token.important,
.token.bold {
	font-weight: bold;
}

.token.italic {
	font-style: italic;
}

