@charset "utf-8";

h2, h3{
    margin:0;
    line-height: 1.2em;
}
main a {
    color: blue;	リンクテキストの色
	/* -webkit-transition: 0.5s;	マウスオン時の移り変わるまでの時間設定。0.5秒。 */
    transition: 0.5s;			/*同上*/
    text-decoration: underline;
    background-color: rgba(255, 255, 255, 0);
}
main a:hover {
	color: #201f3e;				マウスオン時の文字色
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}

main{
    margin-left: 20px;
}

@media screen and (max-width: 600px) {
    nav{
        display:none;
    }
}