a{
    color: azure;
    text-decoration: none;
}
body {
    background-color: rgba(0, 0, 0, 0.922);
    color: aliceblue;
    overflow: auto;
    background-image: url('background.png'); /* 替換 'your-image-url.jpg' 為你的圖片檔案路徑 */
    background-size: cover; /* 讓背景圖片覆蓋整個畫面 */
    background-repeat: no-repeat; /* 不重複顯示背景圖片 */
    background-position: center center; /* 將背景圖片置中 */
    background-attachment: fixed; /* 讓背景圖片固定 */
    margin: 0; /* 確保沒有預設的頁面邊距 */
    padding: 0; /* 確保沒有預設的頁面內邊距 */
    height: 100vh; /* 讓body佔滿整個視窗高度 */
}

#all{
    width: 1000px;
    margin: 0% auto;
}
/* 頁首 各式連接*/
#top {
    height:8%;
    background-color: rgba(130, 125, 125, 0.336);
    margin-top: 0%;
    text-align: left;
    width: 100%;
    padding-bottom: 0.2%;
    
}

#top a {
    color: azure;
    margin-left: -2px; /* Maintain some space on the right */
    margin-right: 50px;
    text-decoration: none; /* Remove underline */
    font-size: 20px;
}
#header{
    height: 50px;
    background-color: rgba(130, 125, 125, 0.336);
    margin-top: -40px;
    padding-bottom: 10px;
    font-size: 40px;
    text-align: center; /*至中對齊*/
}
/*自我介紹*/
#my_picture {
    position: fixed;
    float: left;
    width: 250px;
    height: 250px;
    background-color: rgba(130, 125, 125, 0.336);
    margin-top: 5%;
    margin-left: -3px;
}

#my_picture h4 {
    margin-bottom: 10px;
    margin-left: 5px;
}


#my_picture img {
    display: block;
    margin: 0 auto; /* Center the image horizontally */
    margin-left: 5px; /* Move the image to the left by 5 pixels */
}




/*主要內容*/
.main {
    margin: 450px;
    margin-top: 40px;
    width: 900px;
    height: 600px;
    background-color: rgba(130, 125, 125, 0.336);
    display: flex;
    font-size: 100pt;
}