@charset "utf-8";

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #262626 ;
	box-shadow: 0 9px #000000;
	border-radius:5px;   
}

li {float: left;}
.li1 {float: right;}

li a, .dropbtn {
	display: inline-block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	border-top-left-radius: 5px;
    	border-top-right-radius: 5px;
    	border-bottom-right-radius: 0px ;
    	border-bottom-left-radius: 0px ;
	
}

li a:hover, .dropdown:hover .dropbtn {
	background-color: #ff99ce;
}


.dropdown-content {
	display: none;
	position: absolute;
	margin-top: -5px;
	background-color: #262626;
	width:137px;
	z-index: 1;  
	border-radius: 0 0 5px 5px;
	box-shadow: 0 9px #000000 !important;
}

.dropdown-content a {
	color: white;
	padding: 5px 5px;
	text-decoration: none;
	display:block;
	text-align: center; 
	
}

.dropdown-content a:hover {background-color: #fbd0e6}

.dropdown:hover .dropdown-content {
	display: block;
	block-size: auto;
}

li{	
	font-family: verdana;
	font-size: 15px;
	font-variant: small-caps;
}

.li1{
	font-family: verdana;
	font-size: 15px;
	font-variant: small-caps;
}


h1{
	font-family: "proxima-nova", "Abel", Helvetica;
	text-transform: uppercase;
	font-size: 30pt;
	color: aqua;
	text-shadow: 2px 4px 0px yellow;
	animation-duration: 3s;
	animation-name: h1colorchange;
	animation-iteration-count:infinite;
}



body{
	background-color:lightpink;
	animation-name: backgroundcolorchange;
	animation-duration: 8s;
	animation-iteration-count: infinite;
}

@keyframes backgroundcolorchange{
	0% {background-color: lightpink;}
	50% {background-color:cornflowerblue;}
	100% {background-color: lightpink;}
}
@keyframes dropshadowcolorchange{
	0% {box-shadow: 10px 10px 5px 2px rgba(173,103,114,1.00);}
	50% {box-shadow: 10px 10px 5px 2px rgba(173,103,114,0.50);}
	100% {box-shadow: 10px 10px 5px 2px rgba(173,103,114,1.00);}
}
@keyframes h1colorchange{
	0% {color: aqua; text-shadow: 2px 4px 0px yellow;}
	25%{color:chartreuse; text-shadow: 2px 4px 0px magenta;}
	50%{color:red; text-shadow: 2px 4px 0px aqua;}
	75%{color:magenta; text-shadow: 2px 4px 0px chartreuse;}
	100% {color: aqua; text-shadow: 2px 4px 0px yellow;}
}


#ccontainer{
	width: 550px;
	margin: 0 auto;
	margin-top: 50px;
}

#myCanvas{
	border-radius: 10px;
	box-shadow: 10px 10px 5px 2px rgba(173,103,114,1.00);
	-webkit-box-shadow: 10px 10px 5px 2px rgba(173,103,114,1.00);
	animation-name: dropshadowcolorchange;
	animation-duration: 4s;
	animation-iteration-count: infinite;
}
.maindiv{
	width: 550px;
	margin: 0 auto;
	margin-top: 50px;
}
