body{
color:#ffffff;/*フォントカラー*/
line-height:150%;/*行間*/
margin:30px 30px 50px 50px;/*上、右、下、左*/
background-color:#000000;/*背景色*/
}
p{
text-align: center;/*配置*/
margin:3px; padding:3px/*行間*/
}

a{/*リンクされた文字*/
    color:#40e0d0;
    font-style:normal;
    text-decoration:none;
}
a:link {/*未訪問のリンク*/
    color:#40e0d0;
    font-style:normal;
    text-decoration:none;
}
a:visited {/*訪問後のリンク*/
    color:#40e0d0;
    text-decoration:none;
}
a:hover {/*マウスをのせたとき*/
    color:#00ff00;
    font-style:normal;
    text-decoration:none;
}
a:active {/*クリック中*/
    text-decoration:none;
}