
 
/*navigation */
/* Medium devices (landscape tablets, 700px and up) */
@media only screen and (max-width: 699px) {

.nav {
    font-size: 20px;
    margin: 0%;
    position: static;
    width: 100%;
    text-align: center;   
}
.nav img{
    margin: 0%;
    width: 7%;
    height: auto;
    position: static;
   
}
    
    
} 
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 700px) {

.nav {
	font-size: 35px;
    margin: 0%;
    position: static;
    width: 100%;
    text-align: center;
}   
.nav img{
    margin: 0%;
    width: 7%;
    height: auto;
    position: static;
   
}
    
    
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

.nav {
	background-color: #ffe09e;
	font-size: 60px;
    margin-bottom: 0%;    
    position: static;
    width: 100%;
    text-align: center;
  
}
.nav img{
    margin: 0%;
    width: 7%;
    height: auto;
    position: static;
   
}
}

a:hover {
    text-decoration: underline;
}
	

/*Strip the ul of padding and list styling*/
ul {
	display:inline-block;
	padding-inline-start: 0px;
}
/*Create a horizontal list with spacing*/
li {
    display:inline-block;
    font-weight: normal;
	font-family:Arial, sans-serif;   
	text-align: center; 
	font-size: 50px;	
	margin:20px;
	color: black;	
}
/*Style for menu links*/
li a {
    display:inline-block;
    text-align: center;
    font-family: inherit;
    text-decoration: none;
	color: black;		
	
}
/*Hover state for top level links*/
li:hover a {
	text-decoration:underline;
		color: black;	
}
/*Style for dropdown links*/
li:hover ul a {
	text-decoration:underline;
    height: 40px;
    line-height: 40px;
		color: black;	
}
/*Hover state for dropdown links*/
li:hover ul a:hover {
	text-decoration:underline;

}
/*Hide dropdown links until they are needed*/
li ul {
    display: none;
}
/*Make dropdown links vertical*/
li ul li {
    display: block;
    float: none;
}
/*Prevent text wrapping*/
li ul li a {
    width: auto;
    min-width: 100px;
    padding: 0 20px;
}
/*Display the dropdown on hover*/
ul li a:hover + .hidden, .hidden:hover {
    display: inline-block;
	text-decoration: underline;
}
/*Style 'show menu' label button and hide it by default*/
.show-menu {
    font-family: inherit;
	text-align:center;
	font-weight: bold;	
    text-decoration: none;
	font-size: 30px;
	background-color: inherit;
    padding: 10px 0;
    display: none;
	width:100%
}
.show-menu2 {
    font-family: inherit;
	text-align:center;
	font-weight: bold;	
    text-decoration: none;
	font-size: 30px;
	background-color: inherit;
    padding: 10px 0;
    display: none;
	width:100%
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}
/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}
input[type=checkbox]:checked ~ #menu2{
    display: block;
}
/*Responsive Styles*/
@media screen and (max-width : 760px){
    /*Make dropdown links appear inline*/
    ul {
        position: static;
        display: none;
		list-style-type: disc;
	padding-inline-start: 0px;
    }
    /*Create vertical spacing*/
    li {
		width: 100%;
    }
    /*Make all menu links full width*/
    ul li, li a {
		display: block;
		text-align:center;
    }
    /*Display 'show menu' link*/
    .show-menu {
        display:block;
        position: static;
		
    }
	.show-menu2 {
        display:block;
        position: static;
		
    }
}









