
/* crazy.css */

body {	/* body の設定 */
  color: white;
  background-color: white;
  text-align: center;
  margin: 3em;
}

a:link, a:visited {	/* link = 未訪問のリンク定義, visited = 訪問済みのリンク定義 */
  color: YellowGreen;
  background-color: transparent;
}

a:hover {	/* マウスポインタが上に乗った時のリンク定義 */
  color: SandyBrown;
  background-color: GreenYellow;
}

a:active {	/* クリックされた時のリンク定義 */
  color: MediumSeaGreen;
  background-color: transparent;
}

div.main {
  width: 50em;
  margin: auto;
}

div.contents {
  line-height: 1.5;
  text-align: left;
  border-top: dotted GreenYellow;
  border-bottom: dotted GreenYellow;
  padding: 3em;
  float: left;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}


