:root{
    --space: #0400D1;
    --hover: #9282F5;
    --dark: #4D6BFF;
    --text: #2981E6;
    --grids: #59D8FF;
    --bg: #8CF5EE;
    --lines: white;
    --light: #A5D6FA;
}


* {
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    
    }

body{
    color: var(--dark);
    font-family: 'Noto Sans Japanese', sans-serif;
   
}

img{
    max-width: 100%; /* keep image inside container */
    }
    
    video{
    max-width: 100%; /* keep video inside container but allow to shrink for phone */
    }

header{
/* position: fixed; */
display: flex;
height: 25px;
}

header h1{
 color: var(--space);
    font-size: 20pt;
   
}

p{
padding: 10px;
font-size: 16px;
}

.hamburger{
    display: none;
}

.navigation{
    font-family: 'Tiro Devanagari Hindi', serif;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    
    list-style: none;
  
}

.navigation a {
    display: block;
    padding: 10px;
    font-size: 18px;
    color: var(--space);
}
.navigation a:hover{
    background-color: var(--hover);
}
.footer{
    background-color: var(--bg);
    font-family: 'Tiro Devanagari Hindi', serif;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    color: var(--text);

    list-style: none;
    margin: 0;
    font-size: 18px;
    width: 100%;
}
.wrapper{
    display: grid;
	grid-gap: 5px;
	grid-template-columns: repeat(4, 1fr);	
}

.boxL4{
    background: var(--dark);
    /* opacity: 50%; */
	grid-column: span 4;
}
.boxL4X{
    background: var(--bg);
    /* opacity: 50%; */
	grid-column: span 4;
    display: flex;
    justify-content: center;
}

.boxL1{
    background: var(--grids);
    display: flex;
    justify-content: center;
    align-items: center;
}

.boxL2{
    background: var(--bg);
	grid-column: span 2;
    
}

.boxL2X{
    background: var(--bg);
	grid-column: span 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

#art{
    color: var(--space);
    display: flex;
    justify-content: center;
    font-size: 30px;
}
#designs{
    color: var(--space);
    display: flex;
    justify-content: center;
    font-size: 30px;
}

#game{
    color: var(--space);
    display: flex;
    justify-content: center;
    font-size: 30px;
}


  @media all and (max-width: 600px) { 
   
   header{
    position: fixed;
    display: flex;
    background-color: white;
    width: 100%;
    justify-content: space-between;
}
   
   .hamburger{
       display: flex;
       font-size: 22pt;
       color: var(--text);
   }
  	 .wrapper{
        grid-template-columns: repeat(2, 1fr);
        
        }
        .navigation{
        flex-flow:  column wrap;
        padding-top: 60px;
        display: none;  
		margin-bottom: -30px;
    }
    .navigation a {
        text-align: center;
        padding: 10px;
        border-top: 1px solid black;
    }
    .boxL4{
	grid-column: span 2;
	}
    .boxL4X{
    grid-column: span 2;
    }

    .boxL1{
        
    }
	
	#bio{
	margin-top: 40px;
	
	}
  }