html {
	overflow: hidden;
	touch-action: none;
	content-zooming: none;
}


body {
	position: absolute;
	margin: 0;
	padding: 0;
	background-color: white;
	width: 100vw;
	height: 100vh;
	-webkit-animation-name: sfondo;
	-webkit-animation-duration: 10s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
}

#screen {
	position: absolute;
	background-color: none;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	cursor:pointer;
	z-index: 2;
}

.txt {
	font-size: 25vh;
	font-family: "helvetica", "arial", sans-serif;
	text-transform: uppercase;
	letter-spacing: -5;
	z-index: 1;
	color: #FFE894;
	position: absolute;
	text-align:center;
	width: 100%;
	top: 35vh;
}

.info {
	font-size: 3vh;
  line-height: 1;
  font-family: "helvetica", "arial", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
	letter-spacing: -5;
  z-index: 2;
	color: black;
	position: absolute;
  text-align:left;
  width: 100%;
  margin: 5px;
}

a, a:visited {
  color: black;
}

a:hover, a:active {
  color: gold;
}


.brodo{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 0;
	width: 100vw;
	height: 100vh;
 }

 @keyframes sfondo {
    0%   {background-color: #FFDC6E;}
    25%  {background-color: #EFD06F;}
    50%  {background-color: #FFE894;}
    100% {background-color: #FFEA6C;}
}


@media only screen and (max-width: 600px) {
     .txt {
	font-size: 10vh;
	top: 40vh;
}

	.content-wrapper {
	visibility: visible;
	display: block;
	height: 100vh;
  }
  
    #screen {
	position: absolute;
	background-color: none;
	left: 0;
	top: 0;
	width: 102vw;
	height: 102vh;
	cursor:pointer;
	z-index: 2;
}
}