@charset "utf-8";

/*視窗背景色設定*/
body {
    background-color: #fbf9cc;
    background-image: url('img/bg.jpg');
    background-repeat: repeat-x;
    /* background-position: top;
    background-attachment: fixed; */
    /* background-size: cover; */
}

/*連結顏色設定*/
a {
    color: #df4839;
}
a:hover {
    color: #ff705b;
    text-decoration: none;
}

/*頁首,導覽,頁尾的共通設定*/
header,nav,footer {
    text-align: center;
}

/*導覽樣式設定*/
.menu li {
    list-style-type: none;
    display: inline-block;
    width: 180px;
}

.menu a {
    display: block;
    padding: 10px;
    background: #6fbb9a;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.menu a:hover {
    background: #90ddbb;
}

/*頁面標題設定*/
h1 {
    width: 380px;
    margin: 40px auto;
    padding: 30px;
    border: 5px solid #95dbbd;
    background: linear-gradient(to right, #134e5e, #71b280);
    color: #fff;
    font-size: 300%;
    text-align: center;
    line-height: 1;
    border-radius: 50%;
    text-shadow: 1px 1px 2px #307657;
    font-family: "Bitcount Prop Double", system-ui;
    box-shadow: 0 0 10px 2px #fff;
}

/*次標題設定*/
.h {
    padding: 10px;
    margin-bottom: 30px;
    border: 1px dotted #94c8b1;
    border-left: 10px solid #d0e35b;
    color: #6fbb9a;
    text-decoration: none !important;
    text-align: center;
}

/*小標題設定*/
.h-sub span {
    font-weight: normal;
}

/*內容區塊邊框設定*/
#contents {
    margin: 40px;
    padding: 40px 80px;
    border: 1px solid #f6bb9e;
    background-color: #fff;
    border-radius: 16px;
}

img {
    padding: 15px;
    background: 
        url(img/bg_frame_1.png) left top no-repeat,
        url(img/bg_frame_2.png) right top no-repeat,
        url(img/bg_frame_3.png) left bottom no-repeat,
        url(img/bg_frame_4.png) right bottom no-repeat;
    background-size: 32px;
    text-align: center;
}

.multi {
    width: 250px;
    height: 80px;
    padding-top: 10%;
    background: 
        url(img/flowers.png),
        url(img/avatar.png);
    background-size: 100px, contain;
    background-repeat: no-repeat, no-repeat;
}

#hobby .hobby-sub span {
    font-size: 150%;
}

#cats {
    text-align: center;
}

/*「更多介紹」連結設定*/
.more {
    text-align: right;
}

.more a{
    text-decoration: none;
}

.more::after {
    content: url(img/arrow_circle_right_16dp.png);
    margin-left: 3px;
    vertical-align: middle;
    cursor: pointer;
}
/*連結圖示設定*/
a[target="_blank"]::after {
    content: url(img/open_in_new_16dp.png);
    margin-left: 5px;
    vertical-align: middle;
}

a {
    text-decoration: none;
}

a[href^="mailto:"]::after {
    content: url(img/mail_16dp.png);
    margin-left: 5px;
    vertical-align: middle;
}

a[href^="mailto:"]:hover {
    color: cornflowerblue;
}

/*區塊間分隔*/
#contents > section + section {
    margin-top: 80px;
}

/*文繞圖設定*/


/*圓形圖片設定*/


