@charset "utf-8";

/*視窗背景色設定*/
body{
    background-color: #E8E7D2;
    
    background-repeat: repeat-x;
}

/*連結顏色設定*/
a{
    color:#D18063;
}
a:hover{
    color: #EECFBB;
    text-decoration: none;
}

/*頁首,導覽,頁尾的共通設定*/
header,nav,footer{
    text-align: center;
}


/*頁面標題設定*/
h1{
    width: 300px;
    margin: 40px  auto;
    padding: 30px;
    border: 5px solid #917B56;
    background-color: #C9BA9B;
    color:#fff;
    font-size:300%;
    border-radius: 35%;
    text-align: center;
    line-height: 1;

}

/*次標題設定*/
.h{
    padding: 10px;
    margin-bottom: 30px;
    border: 1px dotted #C9BA9B;
    border-left: 10px solid #F9D9CA;
    color:#BDC2BB;
}

/*小標題設定*/
.h-sub span{
    font-weight: normal;
}

/*內容區塊邊框設定*/
#contents{
    margin: 40px;
    padding: 40px 80px;
    border: 2px solid #CB8A90;
    background-color: #fff;
}



/*連結圖示設定*/
a[target="_blank"]::after {
    content: ""; /* 必須保留，偽元素才會出現 */
    display: inline-block;
    width: 20px;  /* 設定圖示寬度 */
    height: 20px; /* 設定圖示高度 */
    margin-left: 5px;
    vertical-align: middle;
    
    /* 設定背景圖 */
    background-image: url('instagram.png'); 
    background-size: contain; /* 讓圖片縮放符合框框 */
    background-repeat: no-repeat;
}


/*區塊間分隔*/
#contents >section+section{
    margin-top: 80px;
}
