 /* WARNINGS, for everyone who is going to take inspiration from my layout, use my code, or even just take a look at it.
 
 If you're gonna take my code, please credit me. I'm fine with you taking my code, but PLEASE, DO NOT HOTLINK OR STEAL MY ART/IMAGES. AND PLEASE DO NOT STEAL ENTIRE PAGES. I UNDERSTAND I USED A TEMPLATE FOR THIS SITE BUT I STILL CHANGED IT A LOT AND I STILL WORKED HARD ON IT. PLEASE. 
 
 also, I don't understand 99% of my code anymore. i do not know wth is going on with this code, i don't know what i'm doing, all i know is that it works. my other site, thevoidofliminality.neocities.org is way better than whatever this is. and i made that one from scratch, not a template. */
 
 
  body {
                margin: 0;
                background-color: black;
                background-size: 70%;
    overflow-x: hidden;
    color: white;
    
                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: #0000FF;                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

            #header {
                width: 100%;
                /* header color here! */
                height: 220px;
                background-image: url("https://i.postimg.cc/dQHSSYDZ/angel.jpg");
                /* 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%;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #13092D;
                /* navbar color */
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 10px;
                list-style-type: none;
            }

            /* navigation links*/
            #navbar li a {
                color: #955ee0;
                /* 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: underline;
            }

            #flex {
                display: flex;
            }

           

            /* this is the color of the main content area,
    between the sidebars! */
            .main {
                background-color: #431c87;
                flex: 1;
                margin: 0 auto;
                padding: 20px;
                order: 2;
            }
            
            .lines {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	z-index: 300;
	opacity: 0.2;
}
.lines:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	pointer-events: none;
	background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 51%);
	background-size: 100% 4px;
	will-change: background, background-size;
	animation: scanlines 0.2s linear infinite;

}

lines::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  pointer-events: none;
  animation: scanlines 0.15s infinite;
  
}

@keyframes scanlines { 
	from {
		background: linear-gradient(to bottom, transparent 10%, rgba(0, 0, 0, 0.5) 51%);
		background-size: 100% 4px;
	}
	to {
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 50%, transparent 51%);
		background-size: 100% 4px;
	
	}
}

  
  

            /* 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;
            }
            
.main {
  
  order: 2;
}
           
            
            footer {
                background-color: #13092D;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }

            h1
            {
                font-size: 30px;
                
            }
            
            h2,
            h3 {
              font-size: 20px;
              
            }
         
            p {
              
              font-size: 15px;
              
            }

            strong {
                /* this styles bold text */
                color: #c296ff;
            }

          .blinkies1 {
            
            margin-top: 5px;
              display: flex;
gap: 5px;
align-items: center;
            
          }

.blinkies2 {
  
  
            margin-top: 5px;
              display: flex;
gap: 5px;
align-items: center;

}

.blinkies3 {
  
      margin-top: 5px;
              display: flex;
gap: 5px;
align-items: center;

}

.ashtarindex {
  
  position: relative;
  
}

.ashtarindex img {
  
margin-top: 8px;  
}

.angels {
  position: relative;
  
}

.angels img {
  
  margin-bottom: 8px;
  
}

    

.crystalcastles {
  
  position: relative;
  max-width: 70%;
  
}

.crystalcastles img {
  
margin-top: 8px; 
  width: 70%;
}
  
  

           
            /* FOR THE ART PAGES */
  
.artrow {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.artcolumn {
  flex: 49%; 
  max-width: 49%;
  padding: 0 4px;
}

.artcolumn img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}



/* FOR THE SHRINES !! */

.ashtarrow {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.ashtarcolumn {
  flex: 30%; 
  max-width: 30%;
  padding: 0 4px;
}

.ashtarcolumn img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  
}

.ashtardrawing {
  
  width: 50%;
  max-width: 50%;
  padding: 0 4px;
  
}

.ashtardrawing img {
  
  width: 100%;
  
}


.ptaah {
  flex: 30%; 
  max-width: 30%;
  padding: 0 4px;
}

.ptaah img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  
}

.willryrow {
   display: flex;
  flex-wrap: wrap;
  vertical-align: middle;
  padding: 0 4px;
}

.willrycolumn {
  flex: 23%; 
  max-width: 23%;
  padding: 0 4px;
  vertical-align: middle;
}

.willrycolumn img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;

}

.joerow {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.joecolumn {
  flex: 23%; 
  max-width: 23%;
  padding: 0 4px;
}

.joecolumn img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  
}

.anime {
  
  position: relative;
  display: flex;
  flex-wrap: wrap;
  
}


.anime img {
  
  width: 50%;
  max-width: 50%;

}

.infinity {
  
  position: relative;
  max-width: 50%;
  
}

.infinity img {
  
margin-top: 8px; 
  width: 50%;
}

.infinity2 {
  
  position: relative;
  max-width: 50%;
  
}

.infinity2 img {
  
margin-top: 8px; 
  width: 50%;
}

.cosmicbanner {
  
  position: relative;
  max-width: 100%;
  
}

.cosmicbanner img {
  
margin-top: 8px; 
  width: 100%;
}


  
  
  
  

#visitorcounter {
  
  color: white;
  font-size: 20px;
  
}


  

            /* 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) {
              
              body, html {
                
                                overflow-x: hidden;
              }
              
               @media only screen and (max-width: 800px) {
              
             #navbar {
               
               overflow-y: hidden;
               height: 61px;
               
             }
               @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }
                
                               @media only screen and (max-width: 800px) {
#header {
  
  height: 128px;
  
}
}
                            


               @media only screen and (max-width: 800px) {

              .ashtarrow {
  display: flex;
  flex-wrap: wrap;
}

               @media only screen and (max-width: 800px) {


.ashtarcolumn {
  flex: 100%; 
  max-width: 100%;
}

               @media only screen and (max-width: 800px) {

.ashtarcolumn img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  
}

               @media only screen and (max-width: 800px) {

.ashtardrawing {
  
  width: 100%;
  max-width: 100%;
  
}

               @media only screen and (max-width: 800px) {

.ashtardrawing img {
  
  width: 100%;
    vertical-align: middle;
}


.artrow {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.artcolumn {
  flex: 100%; 
  max-width: 100%;
  padding: 0 4px;
}

.artcolumn img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}


.willryrow {
   display: flex;
  flex-wrap: wrap;
  vertical-align: middle;
  padding: 0 4px;
}

.willrycolumn {
  flex: 100%; 
  max-width: 100%;
  padding: 0 4px;
  vertical-align: middle;
}

.willrycolumn img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;

}

.joerow {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.joecolumn {
  flex: 100%; 
  max-width: 100%;
  padding: 0 4px;
}

.joecolumn img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  
}
               @media only screen and (max-width: 800px) {
.angels {
  
  position: relative;
  flex: 70%;
  max-width: 70%;
  display: flex;
  
}


.angels img {
  
 width: 100%;
 
}

.infinityrow {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.infinity {
  flex: 100%; 
  max-width: 100%;
  padding: 0 4px;
}

.infinity img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  
}

.infinity2 {
  flex: 100%; 
  max-width: 100%;
  padding: 0 4px;
}

.infinity2 img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  
}

      @media only screen and (max-width: 800px) {
.crystalcastles {
  
  position: relative;
  max-width: 90%;
  
}

.crystalcastles img {
  
margin-top: 8px; 
  width: 90%;
}
  
 

                /* 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!
      */
      
       @media only screen and (max-width: 800px) {
                #leftSidebar {
                    order: 1;
                }

 

 @media only screen and (max-width: 800px) {
                .main {
                    order: 2;
                          }
            
 @media only screen and (max-width: 800px) {
                #navbar ul {
                    flex-wrap: wrap;
                    order: 3;
                    box-sizing: border-box; 
                }
                
               
    
                }
                
                 @media only screen and (max-width: 800px) {
  .lines {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	z-index: 300;
	opacity: 0.2;
	
  
}

 @media only screen and (max-width: 800px) {
.lines:before {
	content: '';
	position: absolute;
	left: 0;
	width: 100vw;
	height: 100vh;
	top: 0;
	bottom: 0;
	right: 0;
	pointer-events: none;
	background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 51%);
	background-size: 100% 4px;
	will-change: background, background-size;
	animation: scanlines 0.2s linear infinite;

}
 @media only screen and (max-width: 800px) {
lines::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  pointer-events: none;
  animation: scanlines 0.15s infinite;
  
}



    @media only screen and (max-width: 800px) {

          .blinkies1 {
           
            margin-top: 5px;
              display: flex;
gap: 5px;
align-items: center;
max-width: 43%;
max-height: 100%;
            

          }

 @media only screen and (max-width: 800px) {

.blinkies2 {
  
  
           
            margin-top: 5px;
              display: flex;
gap: 5px;
max-width: 43%;
align-items: center;
            


}

 @media only screen and (max-width: 800px) {

.blinkies3 {
  
      
            margin-top: 5px;
              display: flex;
              max-width: 43%;
              max-height: 100%;
gap: 5px;
align-items: center;
            

}

 @media only screen and (max-width: 800px) {
.blinkies1 img {
  
  width: 43%;
  height: 100%;

}

@media only screen and (max-width: 800px) {
.blinkies2 img {
  
  width: 43%;
    height: 100%;

  
}

@media only screen and (max-width: 800px) {
.blinkies3 img {
  
  width: 43%;
    height: 100%;

}







 @media only screen and (max-width: 800px) {
.springbonnie {

width: 100%;
overflow: hidden;
position: relative;

}

 @media only screen and (max-width: 800px) {
.springbonnie img {
  
  width: 100%;
  overflow: hidden;
  display: flex;
  max-width: 100%;
  
}

 @media only screen and (max-width: 800px) {
.ashtarindex {

width: 100%;
overflow: hidden;
position: relative;

}

 @media only screen and (max-width: 800px) {
.ashtarindex img {
  
  width: 100%;
  overflow: hidden;
  display: flex;
  max-width: 100%;
  
}

    

 @media only screen and (max-width: 800px) {


.ptaah {
  flex: 100%; 
  max-width: 100%;
}

               @media only screen and (max-width: 800px) {

.ptaah img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  
}


 @media only screen and (max-width: 800px) {


.heavenlyworlds {
  
  position: relative;
  display: flex;
  flex-wrap: wrap;
  
}


.heavenlyworlds img {
  
  width: 100%;
  max-width: 100%;

}

 
}
	



            

}


}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}


