* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "sandoll-gothicneo1";
	font-style: normal;
}

body {
	overflow: hidden;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.background {
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url("https://www.artevo.live/Monoban/monoban_poem_gallery/background.jpg");
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.3;
	filter: brightness(1.5);
}

.main-content {
	position: relative;
	width: 100vw;
	text-align: center;
}

.main-title {
	font-size: 55px;
	/* Equivalent to text-4xl */
	font-weight: 900;
	/* Equivalent to font-extrabold */
	color: black;
	transform: translateY(100px);
	visibility: hidden;
	margin-bottom: 30px;
}

.main-content h3 {
	font-weight: 400;
	font-size: 25px;
	margin-bottom: 40px;
	transform: translateY(100px);
	visibility: hidden;
}

.action-button {
	color: black;
	background: none;
	font-weight: 500;
	padding: 20px 50px;
	font-size: 18px;
	border-radius: 9999px;
	transition: background 0.5s, color 0.5s;
	transform: scale(1);
	outline: none;
	border: none;
	cursor: pointer;
	transform: translateY(80px);
	opacity: 0;
	border: 1px solid black;
	margin-bottom: 50px;
}

.action-button:hover {
	background: black;
	color: white;
}

.description{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transform: translateY(80px);
}

.description h4{
	font-size: 22px;
	margin-bottom: 10px;
}

.description h5{
	font-size: 18px;
	margin-bottom: 20px;
}

.description p{
	font-size: 14px;
	width: 350px;
	text-align: center;
	line-height: 25px;
	/*word-break: keep-all;*/
}

.home{
	position: absolute;
	top: 5vh;
	right: 5vw;
	color: black;
	text-decoration: none;
	border-bottom: 1px solid black;
	padding: 5px 10px;
	transition: 0.5s;
	opacity: 0;
	z-index: 5;
}

.home:hover{
	opacity: 0.3 !important;
}

@media(max-width: 500px){
	.description p{
		width: 350px;
		font-size: 14px;
	}
	
	.main-title{
		font-size: 40px;
	}
	
	.main-content h3{
		font-size: 20px;
	}
}

@media(max-width: 400px){
	.description p{
		font-size: 13px;
		width: 300px;
	}
}