* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html{
	font-size: 62.5%;
}

body{
	font-size: 1.6rem;
	font-family: 'Manrope', sans-serif;
}

.background{
	width: 100vw;
	height:100vh;
	background: url('./construction.jpg') no-repeat;
	background-size: cover;
	position: relative;
}

.background::after{
	content: '';
	width:100%;
	height:100%;
	top:0;
	left:0;
	position:absolute;
	z-index:10;
	background-color: rgba(0,0,0,0.4);
}

.container{
	display:flex;
	flex-direction:column;
	justify-content: center;
	align-items: center;
	height:100%;
	z-index:1000;
	position:relative;
	color: white;
}

.title{
	font-size:7.2rem;
	text-align: center;
}

.description{
	font-size: 3.8rem;
	text-align: center;
}