body {
    background-color: #caeaf9; /* 背景色を設定 */
    background-image: url('/img/wall.jpg'); /* 生成された画像のパスを指定 */
    background-size: cover; /* 画像がビューポートを覆うように設定 */
    background-repeat: no-repeat; /* 画像が繰り返されないように設定 */
    background-position: center center; /* 画像が常に中央に配置されるように設定 */
    background-attachment: fixed; /* 画像をビューポートに固定 */
}
@media print {
    body {
      background-image: none !important;
      background-color: white !important;
    }
}