@charset "UTF-8";	

/* 

                            0000
                           000000
                          00000000
                         0000  0000
                        0000    0000                       
                      000000000000000
                     00000000000000000
                    00000         00000
                   00000           00000
                  00000             00000
                  ________________________
                  +++++ A Z A D E H +++++
                  ________________________

 */

body {
	margin: 0;
	background-color: blue;
	}

.back {
	padding: 10px;
	background-color: blue;
}

a:link { 																					
	color: white;
	text-decoration: none;
	font-size: 14px;
}

a:visited { 																					
	color: white;
}

a:hover { 																				/* Main menu link color */	
	color: red;
	transition-property:color;
	transition-duration: 0.30s;
}

h1 {
	color: red;
	font-family: 'Dancing Script', cursive;
	font-size: 45px;
	margin: 0px 0px 25px 0px;
}			

h2, h3, h4, h5, p, nav, a:link, li {
	font-family: 'Open Sans', sans-serif;
}

li {
	text-decoration: none;
	font-size: 3vw;
	display: inline-block;
	margin-left: 30px;
	border: 1px solid white;
	padding: 10px;
	border-radius: 5%;
	transition: transform 1s;
}

li:hover {
	background-color: black;
	color: white;
	box-shadow: 5px 5px 5px white;
	cursor: pointer;
}

.scale-12:hover {
	transform: scale(1.2);
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-ms-transform: scale(1.2);
	background-color: red;
}

.scale-25:hover {
	transform: scale(2.5);
		-webkit-transform: scale(2.5);
		-moz-transform: scale(2.5);
		-ms-transform: scale(2.5);
	background-color: red;
}

.scale-3:hover {
	transform: scale(3);
		-webkit-transform: scale(3);
		-moz-transform: scale(3);
		-ms-transform: scale(3);
	background-color: red;
}

.scale-35:hover {
	transform: scale(3.5);
		-webkit-transform: scale(3.5);
		-moz-transform: scale(3.5);
		-ms-transform: scale(3.5);
	background-color: red;
}

.rotate-40:hover {
	transform: rotate(40deg);
	background-color: red;
}

.rotate-90:hover {
	transform: rotate(90deg);
	background-color: red;
}

.rotate-180:hover {
	transform: rotate(180deg);
	background-color: red;
}

.rotate-350:hover {
	transform: rotate(350deg);
	background-color: red;
}

.skew-15:hover {
	transform: skew(15deg);
	background-color: red;
}

.skew-50:hover {
	transform: skew(50deg);
	background-color: red;
}

.skew-90:hover {
	transform: skew(90deg);
	background-color: red;
}

.skew-180:hover {
	transform: skew(180deg);
	background-color: red;
}

.translate-30:hover {
	transform: translate(30px);
	background-color: red;
}

.translate-50:hover {
	transform: translate(50px);
	background-color: red;
}

.translate-100:hover {
	transform: translate(100px);
	background-color: red;
}

.translate-150:hover {
	transform: translate(150px);
	background-color: red;
}