
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html{
	font-size: 62.5%;
}

html,body{
	height: 100%;
	width: 100%;
}

body{
	background: linear-gradient(to right, #00ffcc , #A600FF);
}

nav{
	width:100%;
	height: 6rem;
	background-color: #00495C;
	color: white;
	padding: 1rem;
	box-shadow: 3px 3px 6px black;
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
	animation: fadeInDown;
	animation-duration: 1.5s;

}

nav h1{
	float: left;
	font-size: 2.4rem;
	padding: 0.2rem;
	margin-left: 0.5rem;
	text-shadow: 1px 1px 2px black;
	animation: fadeInLeft;
	animation-duration: 1.8s;
}

nav ul{
	float: right;
}

nav ul li{
	list-style: none;
	float: left;
	padding: 1rem 1.5rem;
	font-size: 1.7rem;
	text-shadow: 1px 1px 2px black;
	
}

nav ul li a{
	color: white;
	text-decoration: none;
}

.container{
	margin-top: 2rem;
}

.container h1,h2{
	/*font-family: "Lucida Console", "Courier New", monospace;*/
	font-family: 'Raleway', sans-serif;
	color: rgba(0,0,0,0.7);
	font-size: 5.5rem;
	letter-spacing: 1rem;
	text-transform: uppercase;
	font-weight: bold;
	animation: fadeInUp;
	animation-duration: 1.5s;
	/*text-shadow: 1px 1px 2px grey;*/
}

h2{
	font-size: 2.5rem;
}

.container{
	width: 100%;
	height: 80%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	text-align: center;
}

.colors input{
	margin: 0rem 0.4rem;
	box-shadow: 1px 1px 1px black;
	animation: pulse;
	animation-duration: 2s;
}

.colors{
	margin-top: -5rem;
}

#switchColor{
	padding: 0.8rem;
	text-align: center;
	border-top-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
	color: gold;
	background-color: brown;
	font-weight: bold;
	text-shadow: 1px 1px 2px black;
	margin: 0rem 0.5rem;
	box-shadow: 1px 1px 1px black;
	letter-spacing: 0.1rem;
	animation: flip;
	animation-duration: 1s;
}

#switchColor:hover{
	/*animation: jello;
	animation-duration: 0.2s;*/
	transform: scale(1.02);
	transition: 0.3s;
	cursor: pointer;
}

h2{
	background-color: rgba(188, 199, 214, 0.8);
	padding: 0.6rem;
	border: 1px solid white;
	text-shadow: 1px 1px 3px white;
	box-shadow:  3px 3px 5px grey;
	margin-top: -4rem;

}

hr{
	margin-top: -7rem;
	width: 15%;
	border-width: 1px black;
	background-color: rgba(0,0,0,0.6);
	padding: 1px;
	margin-bottom: 1rem;
	box-shadow: 2px 2px 4px lightslategrey;
}

h3{
	margin-top: -8.5rem;
	font-size: 1.8rem;
	/*background-color: gold;*/
	color: brown;
	padding: 0.4rem;
	font-family: sans-serif;
	text-shadow: 1px 2px 2px grey;
	border: 1.2px solid gold;
	background-color: gold;
	box-shadow: 1px 1px 3px grey;
	animation: lightSpeedInLeft;
	animation-duration: 1.8s;
}

h3:hover{
	background-color: gold;
	cursor: pointer;
	transform: scale(1.01);
	transition: 0.2s;
}

footer{
	width:100%;
	height: 3.5rem;
	background-color: #00495C;
	color: white;
	padding: 1rem;
	box-shadow: 3px 3px 6px black;
	font-size: 1.3rem;
	text-align: center;
	animation: fadeInUp;
	animation-duration: 1.2s;
	position: fixed;
	bottom: 0px;
}

@media only screen and (max-width: 600px){
	.container h1{
		font-size: 3.6rem;
	}

	.container h2{
		font-size: 2.3rem;
		letter-spacing: 0.5rem;
	}

	#switchColor{
		padding: 0.3rem;
	}

	nav h1{
		font-size: 1.8rem;
		padding-top: 0.8rem;
	}

	nav ul li{
		padding: 1.2rem 0.8rem;
		font-size: 1.4rem;
	}

	h3{
		font-size: 1.6rem;
	}

	footer{
		font-size: 1.2rem;
	}
}

@media only screen and (max-width: 500px){
	.container h1{
		font-size: 3.2rem;
	}

	.container h2{
		font-size: 1.9rem;
		letter-spacing: 0.35rem;
	}

	#switchColor{
		padding: 0.35rem;
	}

	nav h1{
		font-size: 1.8rem;
		padding-top: 0.8rem;
	}

	nav ul li{
		padding: 1.2rem 0.75rem;
		font-size: 1.4rem;
	}

	h3{
		font-size: 1.45rem;
	}

	footer{
		font-size: 1.2rem;
	}

}
