@font-face 
{
	font-family: "SteamWreck";
	src: url("font/Steamwreck.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

html, body 
{
}

body 
{	
	margin: 0; 
	background-image: linear-gradient(#e2b174, #e2b199);
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
			
	display: flex;
	width: 100%;
	height: 100vh;
}

.contenitore 
{
	overflow: hidden;
	display: flex;
	width: 100%;
	height: 95vh;
}

.foto 
{
	
	width: 50%;
	background-image: url("../foto/logo.webp");
	  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.testo 
{
	font-family: "SteamWreck", sans-serif;
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	letter-spacing: 0.5em;
}

#titolo
{
	font-family: "SteamWreck", sans-serif;
	font-size: clamp(6rem, 7vw, 8rem);
}

#sottotitolo
{
	font-family: "SteamWreck", sans-serif;
	font-size: clamp(4rem, 4.5vw, 6rem);
}

#scritta
{
	font-family: "SteamWreck", sans-serif;
	font-size: clamp(2rem, 3vw, 4rem);
}

@media (max-width: 768px) 
{
	.contenitore 
	{
		flex-direction: column;
	}

	.foto 
	{
		width: 100%;
		height: 50vh; 
		background-size:;
		background-position: center;
	}

	.testo 
	{
		width: 99%;
		height: 50vh;
	}
	
	#titolo
	{
		font-size: clamp(4rem, 7vh, 5rem);
	}
	
	#sottotitolo
	{
		font-size: clamp(2rem, 4.5vh, 3rem);
	}

	#scritta
	{
		font-size: clamp(1rem, 3vh, 2rem);
	}
}