html,body {
	background-color: black;
	min-height: 80vh;
	margin: 0px;
	width: 100vw;
	overflow-x: hidden;
}


htmp, body,
.font-highlight {
	font: small-caps bold 24px/1 Arial, Helvetica, sans-serif;
	font-size: min(4vw, 24px);
	color: yellow;
	line-height: 1.5;
}
.font-normal {
	font: 24px/1 Arial, Helvetica, sans-serif;
	font-size: min(3vw, 20px);
	color: white;
	line-height: 1.5;	
}
.font-small {
	font: 12px/1 Arial, Helvetica, sans-serif;
	font-size: min(3vw, 12px);
	color: white;
	line-height: 1.5;	
}

a:link, a:visited , a:hover {
	color: yellow;
	text-decoration: none;
}



.dyn-opacity {
	opacity: 0.4;
	transition: all 0.25s ease-in-out;
}
.dyn-opacity:hover {
	opacity: 1.0;
}

.dyn-background {
	background-color: rgba(192, 192, 192, 0.0);
	transition: all 0.25s ease-in-out;
	white-space: nowrap;
}
.dyn-background:hover {
	background-color: rgba(192, 192, 192, 0.5);
}

.sta-stronger-larger {
	font-size: 2rem;
}

.box-rounded-label {
	border-radius: 10px;
	padding: 5px;
}

.img-icon-as-text {
	height: 40px;
	margin-bottom: -0.5em;
}


#back-arrow {
    position:absolute;
    left: 40px;
    top: 10px;
	max-width: 30vw;
	max-height: 50vh;
}


#main-title {
    position:absolute;
    right: 40px;
    top: 10px;
	white-space: nowrap;
	text-align: right;
}
.main-title-element {
	margin-left: 20px;
}



#logo-hompage {
    position:absolute;
    left: 10px;
    bottom: 40px;
	max-width: 30vw;
	max-height: 50vh;
}

#info-menu  {
    position:absolute;
    right: 10px;
    bottom: 60px;
	width: 70vw;
	text-align: right;
	white-space: nowrap;
	cursor: default;
}
#info-menu-inner {
	padding: 20px;
	border-radius: 10vw 0% 0% 10vw;
}

#descrizione {
	position:relative;
    left: 0px;
    top: 60px;
	padding: 50px;
}

#galleria {
    position:relative;
	top: 30px;
	text-align: center;
}

#galleria img {
	border-radius: 10px;
	transition: all 0.25s ease-in-out;	
	opacity: 0.7;
}
#galleria img:hover {
	transform: translateY(-5px);
	opacity: 1.0;
}


#azienda-footer {
	position: absolute;
	bottom: 0px;
	left: auto;
	right: auto;
	width: 100vw;
	text-align: center;
	padding: 10px;
	cursor: default;
}


@media print {
	#main-title,
	#logo-hompage,
	#info-menu,
	#info-menu-inner,
	#descrizione,
	#galleria,
	#azienda-footer,
	.dyn-opacity,
	.font-highlight,
	.font-normal,
	.font-small,
	.img-icon-as-text,
	a:link, a:visited , a:hover {
		opacity: 1.0;
		color: black;
		filter: saturation(0);
		page-break-inside: avoid;
	}
	.back-arrow,
	#back-arrow,
	#galleria {
		display: none;
	}
	.dyn-background {
		background-color: rgba(192, 192, 192, 0.5);
	}
}