/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
 
body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia','游ゴシック', serif;
   background-color: #b01242;
  /background-image: url('img/bg.png');
  /background-repeat: repeat;
  
}

.center h1 {
  font-size: 36px;
   color: white;
}

/* ヘッダー画像 */
.header-img {
  width: 100%;
  height:auto;
  display: block;
}

/* 3カラムレイアウト */
.layout {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* 左右のカラム */
.left, .right {
  width: 20%;
  padding: 10px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px dashed #ff99ff;
}

/* 真ん中のカラム */
.center {
  width: 60%;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}

/* リンクスタイル */
a {
  color: #fff5f8;
  text-decoration: none;
}
a:hover {
  color: #ff00ff;
  text-shadow: 0 0 5px #ff00ff;
}

/* ネオン風タイトル */
.neon {
  font-size: 36px;
  text-shadow: 0 0 10px #ff99ff, 0 0 20px #ff66cc;
}

/* GIF画像共通 */
.gif {
  display: block;
  margin: 20px auto;
  max-width: 100%;
}
