body{
	font-family: 'Noto Sans JP', sans-serif;
	padding: 0;
	margin: 0;
}

.main-wrapper{
	display:flex;
	width: 100%;
	height: 100vh;
	justify-content: center;
	align-items: center;
	background: url("home.jpeg") no-repeat center center/cover transparent;
	position: relative;
}

.main-wrapper::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .8);
}

.main-wrapper .content{
	position: absolute;
	z-index: 2;
	text-align: center;
	padding: 30px;
}

.main-wrapper h5{
	color: #fff;
	font-size: 4rem;
	margin-bottom: 10px;
}

.main-wrapper p{
	color: #fff;
	font-size: 1.5rem;
}