@charset "utf-8";
body {
	text-align: center;
	background: #e0f7fa;
	font-family: 'Segoe UI', sans-serif;
}
h1 {
	color: #e0f7fa;
	margin-top: 30px;
}
/* style.css に追加 */

#pageTitle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: white;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 10;
    pointer-events: none;
}

#gameCanvas {
	display: block;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	box-shadow: none;
	border-radius: 0;
	border: none;
	background:#e0f7fa;
	z-index: 0;
}
h1 {
	position: relative;
	z-index: 1;
}
body {
	margin: 0;
	padding: 0;
	overflow: hidden;
}