@import url(https://fonts.googleapis.com/earlyaccess/cwtexfangsong.css);

/*背景顏色 字體設定*/
 body {
	font-family: 'cwTeXFangSong', serif;
	line-height: 1.2;
	font-size: 22px;
	font-weight:300;
	background-color: #F8F8FF;
	height: 100%;
	
	background-image: url(background.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
	
 }
 
/*頁面標題設定*/
h1 {
	background-color:red;
	color:white;
	text-align:center;
}

nav {
	background-color:white;
	color:black;
	text-align:center;
}

/*導覽樣式設定*/
.menu li {
	list-style-type:none;
	width:150px;
	display:inline-block;
}

.menu a {
	display:block;
}

.menu a:hover {
	background-color:#0000CD;
	color:white;
}

.col {
	float:left;
	margin-right:40px;
	margin-bottom:30px;
}

.info {
	background-color:white;
}

h2 {
	padding:10px;
	margin-bottom:30px;
	border:2px solid #d0e35b;
	border-left:10px solid #d0e35b;
}

h3 {
	padding:10px;
	margin-bottom:30px;
	border:2px solid #d0e35b;
	border-left:10px solid #d0e35b;
}

footer {
    /* 設定footer的高度 */
    height: 40px;
    box-sizing: border-box;
    /* 設定footer絕對位置在底部 */
    position: float;
    bottom: 0;
    /* 展開footer寬度 */
    width: 100%;
	font-size: 16px;
	padding:10px;
	margin-bottom:20px;
	margin-top:30px;
	border:2px solid #228b22;
	border-left:10px solid #228b22;
	clear:both;
}

	