@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500&display=swap');

body {
	font-family: 'Zen Kaku Gothic New', sans-serif !important;
	background-image: url(img/bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: #333;
}
img {
	width: 100%;
}
.container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
.top-box {
	max-width: 500px;
	width: 50%;
	text-align: center;
}
.logo {
	font-size: 30px;
}
.logo span {
	font-size: 20px;
}
.btn {
	margin-top: 50px;
	width: 300px;
}

@media (max-width: 640px) {

	.top-box {
		width: 80%;
	}
	.btn {
		max-width: 300px;
		width: 100%;
	}
	
}
