/* Basic CSS resets -- leveling slight inconsistencies in browsers */
html, body {
	margin:0px;
	padding:0px;
	height:100%;
    font-size: 20px;
    font-family: "Saira Condensed", sans-serif;
    background-color: #0a0a0a;
    color: #e6e6e6;
    
    overflow: auto;
}

body::-webkit-scrollbar {
  display: none; 
}

html {
		/* Standard text-settings below */
	font-size: 1em;
    line-height: 1.4em;
}



#logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 180px;
    padding-top: 37px;
    margin: auto;
    animation: bob 3s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}



h1, h2, h3, h5 { 
    font-weight: normal;
    color: #c1ff72; 
    margin-left: 60px;
    margin-right: 60px;
    letter-spacing: 3px;
    line-height: 29px;
    text-align: center;
}

h1 { 
    padding-bottom: 20px;
    padding-top: 20px;
    font-size: 60px;
    line-height: 60px;
    text-align: center;
}

h3 { 
    font-size: 20px; 
    text-align: center;
}

h4 { 
    margin-left: 50px;
    margin-right: 50px;
    color: #c1ff72;
    letter-spacing: 3px;
    line-height: 29px;
    text-align: center;
}

p{
    margin-left: 55px;
    margin-right: 55px;
    
}

#shop{
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;    
}


#shopimg{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    
}


img {
    max-width: 70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}



#therogues{
    max-width: 90%;
}

button{
    display: inline-block;
    display: block;
    color: white;
    background-color: #0a0a0a;
    border-style: outset;
    font-size: 14px;
    border-radius: 5px;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
}

button:hover{
    background-color: #7ed957;
    border-style: inset;
    
}
#arrow{
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    
    
}


#glitch{
    font-family: "Rubik Glitch", system-ui; 
    position: relative;
    color: #e6e6e6;
    animation: glitch 2s infinite;
}

#glitch:hover{
    color: 
}

@keyframes glitch {
  0% {
    text-shadow: 1px 0 #7ed957, -2px 0 #7ed957;
    transform: translate(0);
  }
  20% {
    text-shadow: -1px 0 #7ed957, 2px 0 #7ed957;
    transform: translate(1px, -1px);
  }
  40% {
    text-shadow: 1px 0 #7ed957, -2px 0 #7ed957;
    transform: translate(-1px, 1px);
  }
  60% {
    text-shadow: -1px 0 #7ed957, 2px 0 #7ed957;
    transform: translate(1px, 0);
  }
  80% {
    text-shadow: 1px 0 #7ed957, -2px 0 #7ed957;
    transform: translate(-1px, 0);
  }
  100% {
    text-shadow: 0 0 #7ed957, 0 0 #7ed957;
    transform: translate(0);
  }
}

figcaption{
    text-align: center;
    font-size: 17px;
    color: #7ed957;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 10px;
}

#figshop{
    font-size: 14px; 
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

a:link {
  color: white;
  background-color: transparent;
  
}

a:visited {
  color: white;
}

.conclusion{
    padding-top: 20px ;
    padding-bottom: 20px;
}

footer {
    text-align: center;
    font-size: 80%;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 400px;
}

figure.responsive {
    position: relative;
    padding-bottom: 56.25%;  /* 16:9 */
    height: 0px;
    overflow: hidden;
    max-width: 100%;
}

figure.responsive iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

/* Mobile First CSS: we'll design for phone sizes first, then add media queries for larger screens later */


ul{
    list-style:none;
    padding-left: 0px;
    display: inline-block;
}

li{
    /*border: 2px solid #FF8B20;*/
    display:inline-block;
    
    
}


nav{
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
}
nav a{
    border-bottom-style: solid;
    border-bottom-color: #7ed957;
    color: white;
    display: inline-block;
    padding:10px;
    text-decoration:none;

    
}

nav a:hover{
    
    color: #c1ff72;
}


form{
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
}

#signup-container{
    display: flex;
    
    
    
}



/* ========================================
MEDIA QUERIES!
You can adjust the min-width numbers below, and add as many new media queries as you need.
======================================== */



/* Minimum width for laptops. */
@media all and (min-width: 769px) {
	
#shop{
    display: flex;
    flex-wrap: wrap;
        
}
    
#therogues{
    max-width: 90%;
}
   
img {
    max-width: 40%;
    
}	
	
p{
    margin-left: 100px;
    margin-right: 100px;
    
}	
    
#shopimg{
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    
} 
    
  
       
    

} /* closes 769px+ */




/* Minimum width for desktop screens. */
@media all and (min-width: 1024px) {
	
#shop{
    display: flex;
    flex-wrap: wrap;
        
}
    
    
#therogues{
    max-width: 90%;
}
    
    
    
img {
    max-width: 40%;
    
}		
	
p{
    margin-left: 250px;
    margin-right: 250px;
    
}
    
#shopimg{
    max-width: 30%;
    margin-left: auto;
    margin-right: auto;
    
}
    
 figure.responsive {
    position: relative;
      /* 16:9 */
    height: 0px;
    overflow: hidden;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    
}

figure.responsive iframe {
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 60%;
   
    
}  
    
    #gaiainfo{
        
    }

} /* closes 1024px+ */




