* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-size: 16px;
	color: #333;
	/* font-family: 'Arial', sans-serif; */
	height: 100vh;
}

#poster {
	display: flex; justify-content: center; align-items: center;
	height: 100vh;
	background-image: url(../assets/lv/lv00.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
}
#poster h1 {
	font-size: clamp(48px, 6vw, 80px);
	color: #fff;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
	font-weight: normal;
	position: absolute;
	bottom: 15%; left: 15%;
}

