@charset "utf-8";
/* CSS Document */

@import "fonts/fonts.css";

* {
	box-sizing: border-box;
}

h1, h2 {
	font-family: "capitol", sans-serif;
	font-weight: 500;
}

h1 {
	background-color: #ffeaec;
	color: #2E1760;
	font-size: 7.0em;
	text-align: center;
	line-height: 1.4em;
	letter-spacing: 5px;
	height: 120px;
	width: 40%;
	box-shadow: 3px 3px 6px #3C91E6;
	margin-top: 20px;	
}

p, ul {
	font-family: "mostra-nuova", sans-serif;
}

#container {
	position: relative;
	min-height: 100vh;
}

main {
	padding-bottom: 50px;
}

footer {
	background-color: #b1f8f2;
	color: #2e1760;
	text-align: center;
	height: 50px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}

@media only screen and (max-width: 885px) {
	
	main h1 {
		width: 100%;
		box-shadow: none;
	}
	
}

@media only screen and (max-width: 700px) {
	
	h1 {
		margin-bottom: 20px;
	}
	
}

@media only screen and (max-width: 400px) {
	
	main h1 {
		font-size: 5.0em;
		height: 87px;
	}
	
}
 