@charset "utf-8";

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

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

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

.unlock-button:hover {
	background-color: #0056b3;
}