@charset "UTF-8";
body {
  background-color:bisque;
  background-image: url("images/bg.jpg");
  background-size: cover;
}
 
#wrap {
  width: 960px;
  margin: auto;
  background-color: white;
}
 
header {
  padding: 40px;
  height: 80px;
  background-image: url("images/pattern.png");
  background-repeat: repeat;
}
 
nav {
  padding: 8px 40px;
  background-color: burlywood;
  color: black;
}
 
main p {
  font-size: 20px;
  font-weight: bold;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
}

 
footer {
  padding: 40px;
  height: 40px;
  background-color : burlywood;
  color: black;
  background-image: url("images/logo.png");
  background-repeat: no-repeat;
  background-size: 200px 50px;
  background-position: center bottom;
}