@charset "utf-8";
/* CSS Document */

/* 全体のスタイル */
body,
html {
	height: 100%;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f0f0f0;
}

/* ボタンコンテナのスタイル */
#button-container {
	text-align: center;
}

/* ボタンのスタイル */
.back-to-app-button {
	display: inline-block;
	padding: 50px 50px;
	background-color: #C4D700;
	color: white;
	text-decoration: none;
	font-size: 52px;
	font-weight: bold;
	border-radius: 25px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s;
}