 /* 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://sadhost.neocities.org/images/layouts/wp.jpeg');
            	--body-bg-image: url('https://sadhost.neocities.org/images/tiles/purplesky.gif');

            	/* colors */
            	/* --content: #43256E; */
        	}

        	/* 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: PixelCode;
            	src: url('PixelCode.woff') format('woff');
        	}

        	@font-face {
            	font-family: PixelCode;
            	src: url('PixelCode.woff') format('woff');
            	font-weight: bold;
        	}

        	@font-face {
            	font-family: PixelCode;
            	src: url('PixelCode.woff') format('woff');
            	font-style: italic;
        	}

        	@font-face {
            	font-family: PixelCode;
            	src: url('PixelCode.woff') format('woff');
            	font-style: italic;
            	font-weight: bold;
        	}

        	body {
            	font-family: 'Nunito', sans-serif;
            	margin: 0;
            	background-color: black;
            	/* you can delete the line below if you'd prefer to not use an image */
            	color: #fceaff;
            
            	 background-repeat: no-repeat;
                 background-attachment: fixed;
                background-size: 100% 100%;
           	 
             	background-image: radial-gradient(transparent 60%, transparent 30%, black ),url("wires2.jpg");
           	 
           	 
           	 
    
           	 
        	}

        	* {
            	box-sizing: border-box;
        	}

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

        	/* the area below is for all links on your page
	EXCEPT for the navigation */
        	#container a {
            /*	color: #ED64F5; */
            	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: transparent;
                margin-bottom: -100px;
            	/* header color here! */
            	height: 350px;
            	background-image: url("metal_logotest.png");
            	/* 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: 800px;
            	background-repeat: no-repeat;
                background-position: center;
    
                
       	 
        	}

        	/* navigation section!! */
        	 /* #navbar {
                margin-top: -100px;
            	height: 40px;
            	background-color: black;
            	/* navbar color 
            	width: 100%;
            	border: 2px solid;
            	border-color: white;
            	display: inline-block;
            	margin-bottom: 10px;
            	font-family: monospace;
            	font-size: 14px; */
                
         	 
          	 
          	 
           	 
      	 
          
    
        	}

        	#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: white;
            	/* 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: #BB5B8E;
            	text-decoration: underline;
        	}

        	#flex {
            	display: flex;
            	
            
              
        	}   

         

        	/* this colors BOTH sidebars
	if you want to style them separately,
	create styles for #leftSidebar and #rightSidebar */
        	aside {
            
            	width: 200px;
            	padding: 15px;
            	font-size: smaller;
            	text-align: left;
                
                
           	 
           	 
                         	/* this makes the sidebar text slightly smaller */
        	}


        	/* this is the color of the main content area,
	between the sidebars! */
        	main {
           	 
           	 
            	background-color: black; 
            	flex: 1;
            	padding: 15px;
            	border: 2px solid;
            	border-color: white;
            	order: 2;
            
           	 
           	 

           	 



}
        
           	 
.container{
  display: inline-block;
  overflow-wrap: break-word;  
  font-family: monospace;
  font-size: 15px;
  overflow: hidden; /* hide text behind the cursor */
white-space: nowrap; /* keep text in one line */    
    
}

    .container2{
  display: block;
  overflow: visible; /* hide text behind the cursor */
  position: absolute;
 overflow-wrap: break-word;  
  font-family: monospace;
  font-size: 15px;
white-space: nowrap; 
    


    
}

.paragraph_1 {
  text-size-adjust: none;
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
  width: 0;
  word-break: break-all;
  overflow: hidden;
  margin-right: auto;    
  border-right: .15em solid white; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  letter-spacing: .15em; /* Adjust as needed */
  animation:
    typing_1 3s steps(33,end),
    blink-caret .70s alternate 5;
   animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    
	}
    
    
	.start {
  word-break: break-all;
  overflow: hidden;
  width: 0;
  white-space: nowrap;
  animation:
	typing 3s steps(1);
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-delay: 1s;
   -webkit-animation-delay: 1s;
   -moz-animation-delay: 1s;
    
    
    
}
    
  .paragraph_2 {
     text-size-adjust: none;
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
    width: 0;
  word-break: break-all;
  overflow: hidden;    
  margin-right: auto;
  border-right: .15em solid white; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  letter-spacing: .15em; /* Adjust as needed */
  animation:
    typing_2 3s steps(33,end),
    blink-caret .70s alternate 5;
   animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
	animation-delay: 4s;
	-webkit-animation-delay: 4s;
		-moz-animation-delay: 4s;
 	 

 	 
}
	.start_2 {
  word-break: break-all;
  overflow: hidden;
  width: 0;
  white-space: nowrap;
  animation:
  	typing 3s steps(1);
  animation-fill-mode: forwards;
   -webkit-animation-fill-mode: forwards;
   -moz-animation-fill-mode: forwards;
  animation-delay: 5s;
   -webkit-animation-delay: 5s;
   -moz-animation-delay: 5s;
    
     	 
   	 
	}

.paragraph_3 {
   text-size-adjust: none;
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
  width: 0;
  word-break: break-all;
  overflow: hidden;    
  margin-right: auto;
  border-right: .15em solid white; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  letter-spacing: .15em; /* Adjust as needed */
  animation:
    typing_3 3s steps(33,end),
  blink-caret .70s alternate 5;
   animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
	animation-delay: 8;
	-webkit-animation-delay: 8s;
	-moz-animation-delay: 8s;
     	 
   	 
	}

  .start_3 {
  word-break: break-all;
  overflow: hidden;
  width: 0;
  white-space: nowrap;
  animation:
  	typing 3s steps(1);
  animation-fill-mode: forwards;
   -webkit-animation-fill-mode: forwards;
   -moz-animation-fill-mode: forwards;
  animation-delay: 9s;
   -webkit-animation-delay: 9s;
   -moz-animation-delay: 9s;
 	 
}

.paragraph_4 {
     text-size-adjust: none;
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
   width: 0;
  word-break: break-all;
  overflow: hidden;    
  margin-right: auto;
  border-right: .15em solid white; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  letter-spacing: .15em; /* Adjust as needed */
  animation:
    typing_4 3s steps(33,end),
    blink-caret .70s alternate 5;
   animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
	animation-delay: 12s;
	-webkit-animation-delay: 12s;
	-moz-animation-delay: 12s;
    
}
    

  
   	 
     	@keyframes typing {
  from { width: 0 }
  to { width: 100%}
}
  	 

  	@keyframes typing_1 {
  from { width: 0 }
  to { width: 100%}
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}
    
	@keyframes typing_2 {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}
    

  @keyframes typing_3 {
  from { width: 0 }
  to { width: 92% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}
    

  @keyframes typing_4 {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}
    

    @-webkit-keyframes typing {
  from { width: 0 }
  to { width: 100%}
}
  	 

  	@-webkit-keyframes typing_1 {
  from { width: 0 }
  to { width: 100%}
}

/* The typewriter cursor effect */
@-webkit-keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}
    
	@-webkit-keyframes typing_2 {
  from { width: 0 }
  to { width: 100% }
}

@-webkit-keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}
    

 @-webkit-keyframes typing_3 {
  from { width: 0 }
  to { width: 92% }
}

@-webkit-keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}
    

  @-webkit-keyframes typing_4 {
  from { width: 0 }
  to { width: 100% }
}

@-webkit-keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}


    @-moz-keyframes typing {
  from { width: 0 }
  to { width: 100%}
}
  	 

  	@-moz-keyframes typing_1 {
  from { width: 0 }
  to { width: 100%}
}

/* The typewriter cursor effect */
@-moz-keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}
    
	@-moz-keyframes typing_2 {
  from { width: 0 }
  to { width: 100% }
}

@-moz-keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}
    

 @-moz-keyframes typing_3 {
  from { width: 0 }
  to { width: 92% }
}

@-moz-keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}
    

  @-moz-keyframes typing_4 {
  from { width: 0 }
  to { width: 100% }
}

@-moz-keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}
    




        	/* 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: 2;
            	border: 2px solid;
                color: black;
            
    
                }


           	  	 
                            	hr {
  
                                    
                                    
                                    width: 50%;
                                

}
   
        	

        	#rightSidebar {
            	order: 1;
            	border: 2px solid;
            	background-color: black;
           	 
       	 

       	/*  footer {
            	background-color: black;
            	/* background color for footer */
         	/*   width: 100%;
            	height: 40px;
            	padding: 10px;
            	text-align: center;
            	border: 2px solid;
            	border-color: white;
            	font-family: PixelCode;
           	 
            	/* this centers the footer text */
        	}

        	h1 {
           	 
            	font-size: 20px;
            	text-align: left;
            	font-family: PixelCode;
           	 
           	 
         	}
   	 
             h2 {

        text-align: center;
    
    
    
}



        	h3 {
            	color: white;
        	}

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

        	/* this is just a cool box, it's the darker colored one */
        	.box {
                border: 2px solid;
            	background-color: black;
            	padding: 20px;
                border-color: white;
                margin-top: -15px;
                
            
}
    

a:link {
  color: White;
 text-decoration: none;
}

a:visited {
color: White;
  background-color: transparent;
  text-decoration: none;

    
}
    
a:hover {
color: #BB5B8E;
  text-decoration: underline;
}

a:active {
 
color:purple;
background-color: transparent;
  text-decoration: underline;

}
                

  
            

                


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