html, body,
ul, ol, li,
h1, h2, h3, h4, h5, h6, p,
form, input, div {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'M PLUS 1p', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Helvetica, Arial, sans-serif;
}

.Level {
  background-image: url('あなたの画像のURL.jpg'); /* ここに画像のパスを記述 */
  background-size: cover; /* 画面全体に画像を拡大縮小して表示 */
  background-position: center center; /* 画像を中央に配置 */
  background-repeat: no-repeat; /* 画像の繰り返しを防止 */
  width: 100vw; /* ビューポートの幅いっぱいに設定 */
  height: 100vh; /* ビューポートの高さいっぱいに設定 */
  /* 必要に応じて、コンテンツの配置やスタイルを追加 */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white; /* 背景画像の上に表示されるテキストの色 */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* テキストの可読性を高める影 */
}