
/* crazy.css */

body {	/* body の設定 */
  color: MediumPurple;
  background-color: white;
  text-align: center;
  margin: 3em;
  font: book antiqua;
}

a:link, a:visited {	/* link = 未訪問のリンク定義, visited = 訪問済みのリンク定義 */
  color: deeppink;
  background-color: transparent;
}

a:hover {	/* マウスポインタが上に乗った時のリンク定義 */
  color: white;
  background-color: hotpink;
}

a:active {	/* クリックされた時のリンク定義 */
  color: tomato;
  background-color: transparent;
}

div.main {  
  width: 40em;     /* 点々の左からの距離 */
  margin: auto;
}

div.contents {
  line-height: 1.5;
  text-align: left;
  border-top: dotted silver;
  border-bottom: dotted silver;
  padding: 1em;
  float: left;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}


