@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@0;1&family=Poppins:wght@400;700&display=swap');

html,
body {
	margin: 0px;
	padding: 0px;
	color: #fff;
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	font-size: 400;
}

a {
	color: #fff;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

a:hover, a:focus {
	text-decoration: none;
}

.content {
	background: url(../img/cantiere-con-mezzi.jpg) no-repeat center center; 
	background-blend-mode: multiply;
	background-size:cover;
}

.content::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.6) 100%);
}

.container {
	position: relative;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

.titolo {
	font-size: 6rem;
	line-height: 1;
	font-weight: 700;
}

.nome {
	font-size: 1.5rem;
	line-height: 1.5;
}

.indirizzo, .contatti {
	font-size: 1.1rem;
	line-height: 1.5;
}

@media (min-width: 768px) and (max-width: 991px) {
	.titolo {
		font-size: 2.5rem;
	}
}

@media (max-width : 767px) {
	.titolo {
		font-size: 1.5rem;
	}

	.indirizzo {
		font-size: 1rem;
	}
}