html,body {
           color: white;
           background-color: black;
		   text-align: center;

}

a{/*リンクされた文字*/
    color:0000ff;
    font-style:normal;
    text-decoration:none;
}
a:link {/*未訪問のリンク*/
    color: white;
    font-style:normal;
    text-decoration:none;
}
a:visited {/*訪問後のリンク*/
    color:#934C7B;
    
}
a:hover {/*マウスをのせたとき*/
    color: aqua;
    font-style:normal;
    text-decoration:underline;
}
a:active {/*クリック中*/
    text-decoration:none;
}