@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
	body{
	background-color: #FFF;
	margin: 0px;
	padding: 0px;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	}
	.tutto{
	display: grid;
	grid-template-rows: 1fr 180px;
	grid-row-gap: 0px;
	min-height: 100vh;
	}
	.fondohead{
	background-image: url(images/pavers-background.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	color: #FFF;
	line-height: 25px;
	padding-right: 25px;
	padding-left: 25px;
	box-sizing: border-box;
	padding-bottom: 180px;
	background-color: #5d6366;
	}
	.fondohead h2{
	font-size: 25px;
	font-weight: 300;
	color: #00ffff;
	margin-top: 50px;
	margin-bottom: 60px;
	line-height: 30px;
	}
	.logotipo{
	background-image: url(images/logo.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	height: 322px;
	width: 300px;
	text-indent: -9999px;
	display: block;
	overflow: hidden;
	position: absolute;
	left: 50%;
	margin-left: -150px;
	bottom: 20px;
	}
	footer{
	position: relative;
	}
	@media (max-width: 540px) {
	.logotipo{
	height: 215px;
	width: 200px;
	margin-left: -100px;
	bottom: 20px;
	}
	.fondohead{
	padding-bottom: 80px;
	}
	}