 :root {
                --header-image: url('https://files.catbox.moe/qc5yuj.jpg');
                --body-bg-image: url('https://sadhost.neocities.org/images/tiles/purplesky.gif');

                /* colors */
                --text-clr: #d6ccd6;
				--other-clr: #BFA0CC;
				--bold-version: #796378;
            }
	  
		  .album {
			display:flex;
			gap:20px;
			margin-bottom:15px;
			flex:1;
			}
			
			th, td {
				padding:6px;
				text-align:left;
				}

            /* 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');
            }

            @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;
                margin: 0;
                background-color: #290a33;
                background-size: 65px;
                color: #252126;
                background-image: none;
            }

            * {
                box-sizing: border-box;
            }

            #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: var(--bold-version);
                font-weight: bold;
                /* text-decoration:none; 
                 * bc i keep forgetting the command*/
            }

            #header {
                width: 100%;
                background-color: #5e4e8c;
                height: 150px;
                background-image: var(--header-image);
                background-size: 100%;
            }

            #flex {
                display: flex;
            }

            aside {
                background-color: #361635;
				color: var(--text-clr);
                width: 200px;
                padding: 20px;
                font-size: smaller;
				overflow: hidden;
            }

            main {
                background-color: #3b253a;
				color: var(--text-clr);
                flex: 1;
                padding: 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;
				color: var(--text-clr);
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
            }

            h1, h2, h3 {
                color: var(--other-clr);
            }

            h1 {
                font-size: 25px;
            }

            strong {
                color: var(--bold-version);
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #1c081b;
                border: 1px solid #BFA0CC;
                padding: 10px;
				overflow: auto;
				scrollbar-width: none;
				width:170px;
				height: 180px;
            }

            /* 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: 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;
                }
            }