@charset "UTF-8";
/* CSS Document */

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.test-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw; /* ビューポートの幅全体 */
  height: 100vh; /* ビューポートの高さ全体 */
  background-image: url('img/5ri.png'); /* 背景画像のURLを指定 */
  background-size: cover; /* 画像をフルスクリーンで表示 */
  background-position: center; /* 画像の位置を中央に */
}