/* CSS Document */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('../images/kari/main.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(0.5); /* ぼかし効果と明るさ調整 */
  z-index: -1; /* 背景として背面に配置 */
}

.image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain; /* 縦横比を維持しつつ中央に収まる */
  z-index: 1; /* 手前に表示 */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5); /* オプション: 画像に影を追加 */
}
