﻿/* 一番下を青色 */
body{
	background-color:black;
}

/* 背景に画像を配置 */
.background {
  width:100%;         /* 画面いっぱい */
  max-width:1478px;   /* 最大幅 背景画像の幅に合わせた */
  margin:0 auto;      /* block形式　中央揃え */
  text-align:center;  /*文字形式　中央揃え */
  background-image: url(../images/fish透明.jpg);	/* 背景画像 */
}

h1{
    padding-top:50px; /* 見出しの上を50px空ける */
}

table{
  margin-left: auto;  /* 左を中央へ */
  margin-right: auto; /* 右を中央へ */
  font-size: 16px;
}

footer{
  width:100%;
  max-width:500px;
  margin:20px auto;		/* 上のテーブルとの間隔20px 左右は中央揃え */
  color:blue;			/* 文字色 */             
  background-color:white;	/* 注意：文字も半透明になる */
  opacity: 0.6;   /* 透明度50% 文字も背景も同じ透明になる*/
  font-weight: bold;	/* 文字の太さ */
  text-align:center;	/* 文字の中央揃え */
 }

