html {
	height: 100%;
	background-color: #9e3f00; 
	background-image: url("https://www.transparenttextures.com/patterns/dark-leather.png");
}
body {
	height: 100%;
}
body .container {
	height: 100%;
	background-color: #ebc458;
	background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
}

body .claim {
	font-family: 'Damion', cursive;
	font-style: italic;
}

.contenitore_galleria {
	display: grid; 
	grid-template-columns: repeat(2, 1fr); 
	grid-gap: 5px;
}
.contenitore_galleria .gallery-item {
	border: 2px solid #fff;
}
.contenitore_galleria .gallery-item img {
	width: 100%; 
	height: 100%; 
	max-height: 200px;
	object-fit: cover; 
}
@media (min-width: 640px) {
	.contenitore_galleria {
		grid-template-columns: repeat(3, 1fr); 
	}
}