/* Original code from sadgrl.online layout builder. Edited by Neptune */
<style>
            /* 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 */

           

			 @font-face { 
            font-family: 'Minecraft';
            src: url(fonts/minecraft_font.ttf) format('truetype');
            }
			
			@keyframes floating { 
			0% { 
			transform: translate(0,  0px); 
			} 

			50%  { 
			transform: translate(0, -10px); 
			} 

			100%   {
			transform: translate(0, -0px); 
			} 
			}
			
            body {
                font-family: "Minecraft";
				font-size: 14px;
                margin: 0;
                background-color: #08031A;
               /* you can delete the line below if you'd prefer to not use an image */
                background-size: 350px;
                color: #fceaff;
                background-image: url(img/stars.png);
            }
			

            * {
                box-sizing: border-box;
            }
			
						 /* Dropdown Button */
							.dropbtn {
							  background-image: url(img/glass-mgnta-x.png);
							  backround-size: 2%;
							  padding: 0;
							  margin: 0;
							  font-family: 'Minecraft';
							  font-size: 14px;
							  font-weight: bold;
							  color: #e2ccff;
							  border: none;
							}

							/* The container <div> - needed to position the dropdown content */
							.dropdown {
							  position: relative;
							  display: inline-block;
							}

							/* Dropdown Content (Hidden by Default) */
							.dropdown_content {
							  display: none;
							  position: absolute;
							  background-color: black;
							  background-image: url(img/minecraft/glass-orng.png);
							  background-size: 20%;
							  min-width: 160px;
							  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
							  z-index: 1;
							}

							/* Links inside the dropdown */
							.dropdown_content a {
							  color: black;
							  padding: 12px 16px;
							  text-decoration: none;
							  display: block;
							}

							/* Change color of dropdown links on hover */
							.dropdown_content a:hover {background-color: #5A301B;}

							/* Show the dropdown menu on hover */
							.dropdown:hover .dropdown_content {display: block;}

							/* Change the background color of the dropdown button when the dropdown content is shown */
							.dropdown:hover .dropbtn {background-color: #361029;}
							
						.frame {
								border: 3px solid transparent;
								border-image: url(img/spectrum-border.png) 2 stretch;
								}
						
						.raise-image {
							transition:
								transform 0.3s ease,
						}
						
						.raise-image:hover {
							transform: translateY(-5px) ;
						}
						
						.rotate-image {
							transition: transform 0.3s ease-in-out;
						}
						
						.rotate-image:hover {
							transform: rotate(15deg);
						}
						
						.scale img {
							transition: transform 0.3s ease-in-out;
						}
						
						.scale:hover img {
							transform: scale(1.1);
						}
		
						.levitate img {
							transition: transform 0.3s ease-in-out;
						}
						
						.levitate:hover img {
							animation-name: floating; 
							animation-duration: 1s; 
							animation-iteration-count: infinite; 
							animation-timing-function: ease-in-out;
						} 
						
						
					
					
                

            /* 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: 1000px;
                /* 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: #a49cba;
				text-decoration:none;
            }

            #header {
				.center {
						display: block;
						margin-left: auto;
						margin-right: auto;
						width: 70%;
				}
				.responsive {
					width: 70%;
					height: auto;
				}
                width: 100%;
                background-color: #000000;
                /* header color here! */
                height: 175px;
                /* 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(img/stars.png);
                background-size: 35%;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-image: url(img/glass-mgnta.png);
				background-size: 3%;
				border: 2px solid transparent;
				border-image: url(img/glass-mgnta-brdr.png) 1 stretch;
                /* 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: #e2ccff;
                /* 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: #a49cba;
                text-decoration: none;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
				.center {
						display: block;
						margin-left: auto;
						margin-right: auto;
						width: 100%;
				}
				.responsive {
					width: 100%;
					height: auto;
				}
				.rounded {
						  border-radius: 20%;
						}
                background-image: url(img/glass-blu.png);
				background-size: 20%;
				border: 3px solid transparent;
				border-image: url(img/glass-blu-brdr.png) 2 stretch;
                width: 200px;
                padding: 10px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
				
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-image: url(img/minecraft/glass-blk.png);
				background-size: 5%;
                flex: 1;
                padding: 20px;
                order: 2;
				
				.center {
						display: block;
						margin-left: auto;
						margin-right: auto;
						width: 100%;
						
				}
				
				.center-img {
						display: block;
						margin-left: auto;
						margin-right: auto;
				}
				
				.gallery a {
					width: 116px;
					height: 58px;
					padding: 20px;
					display: inline-block;
					border-radius: 10px;
					box-sizing: border-box;
					margin: 4px 2px;
					border: none;
				}
				
				.content {
					margin: 5px;
					padding: 5px;
					background-image: url(img/glass-blk.png);
					background-size: 5%;
					width: auto;
					height: 500px;
					overflow: auto;
				}
				
				.float-left {
					float: left;
					width: 33.3%;
					padding: 5px;
				}
				
				.float-right {
					float: right;
					width: 33.3%;
				}
				
				figure {
					border:none;
					padding: none;
					margin-inline: 30px;
					display: inline-block;
				}
						
				figcaption {
					color: violet;
					padding: 2px;
					width: 110px;
					text-align: center;
					
				}
            }

            /* 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;
            }

            #page-footer a {
					color: #99ccff;
			}
			
			#page-footer a:hover {
					color: #a49cba;
			}
					
			footer {
                background-color: #0a0307;
                /* background color for footer */
                width: 100%;
                height: 30px;
                padding: 10px;
				font-size: 12px;
                text-align: center;
                /* this centers the footer text */
            }

            h1 {
                font-family: "Minecraft";
				font-size: 50px;
				text-align: center;
				color: #e2ccff;
            }
			
			h2 {
				font-family: "Minecraft";
				font-weight: bold;
				font-size: 30px;
				text-align: center;
				color: #db922c;
			}
			
			h3 {
				font-family: "Minecraft";
				font-decoration: ;
				font-size: 14px;
				text-align: right;
				font-style: italic;
				color: #db922c;
				padding: 5px;
			}
			
			h4 {
				font-family: "Minecraft";
				font-decoration: none;
				font-size: 14px;
				text-align: center;
				font-style: italic;
				color: #53EAFD;
				padding: 5px;
			}
			
			h5 {
				font-family: "Minecraft";
				font-decoration: ;
				font-size: 12px;
				text-align: left;
				font-style: italic;
				color: #53EAFD;
			}

            strong {
                /* this styles bold text */
                color: #9;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #170712;
				border: 1px solid #db922c;
				border-radius: 10px;
                padding: 10px;
            }
			
			
			

            /* 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: 900px) {
                #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;
                }
            }
			
			/* Start https://www.cursors-4u.com */ * {cursor: url(https://ani.cursors-4u.net/games/gam-16/gam1535.cur), auto !important;} /* End https://www.cursors-4u.com */
</style>