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

::-webkit-scrollbar {
    display: none;
}

body, html {
	overflow: hidden;
}

.background {
	width: 100vw;
	height: 100vh;
	overflow: auto;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}


.background img {
	width: 150%;
	height: 150%;
	object-fit: cover;
	filter: brightness(0.75);
}

.about{
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	color: white;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	transform: translateY(80px);
	text-align: center;
	display: flex;
}

.title{
	font-size: 60px;
	margin-bottom: 30px;
}

.description {
	font-size: 16px;
	line-height: 33px;
	width: 90%;
	max-width: 450px;
	white-space: pre-wrap;
	word-break: break-word;
}

.action{
	position: absolute;
	color: white;
	top: 0;
	left: 0;
	transform: translateY(80px);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	width: 100vw;
	height: 100vh;
	text-align: center;
	display: flex;
}

.action p{
	max-width: 600px;
	font-size: 15px;
	margin-top: 30px;
	width: 90%;
	line-height: 33px;
}

.main{
	font-size: 40px;
	margin-bottom: 10px;
}

.second{
	font-size: 25px;
	margin-bottom: 40px;
}

.arrow{
	margin-bottom: 60px;
	filter: invert(100%);
	width: 50px;
	transform: rotate(-90deg);
	animation: bounce 1.5s infinite;
	animation-direction: alternate;
}

@keyframes bounce {
	from {
		transform: translateY(0px) rotate(-90deg);
	}

	to {
		transform: translateY(25px) rotate(-90deg);
	}
}

.link{
	padding: 20px 30px;
	color: black;
	background: white;
	text-decoration: none;
	width: 150px;
	border-radius: 100px;
	font-size: 20px;
	transition: opacity 0.5s;
}

.link:hover{
	opacity: 0.5;
}

@media screen and (max-width: 768px) {
	.title,
	.main {
		font-size: 40px;
	}
	
	.title{
		margin-bottom: 10px;
	}

	.description {
		font-size: 15px;
		line-height: 28px;
		width: 90%;
	}
}

@media screen and (max-width: 600px){
	.title,
	.main {
		padding: 0px 20px;
	}
	
	.title{
		font-size: 40px;
	}
	
	.main{
		font-size: 25px;
	}
	
	.second{
		font-size: 20px;
	}
	
	.description {
		font-size: 13px;
	}
}