/*導覽列*/
.flex-nav {
  display: flex;
}

nav ul {
  background-color: rgba(245, 170, 64, 0.974);
  list-style: none; /* 移除項目符號 */
  margin:0;
  padding: 0;
}
nav a {
  color: inherit; /* 移除超連結顏色 */
  display: block; /* 讓 <a> 填滿 <li> */
  font-size: 1.2rem;
  padding: 10px;
  margin:10px;
  text-decoration: none; /* 移除超連結底線 */
  font-weight: bolder;
}

nav a:hover {
  background-color: rgb(115, 70, 33);
  color: white;
  font-weight: bolder;
}

.inline-block-nav li {
  display: inline-block;
}
.inline-block-nav {
  text-align:right;
 
}

/*div並排*/
.mainflex {
    display: flex;
    justify-content: center;
}

h2 {
    border: 2px solid rgba(244, 106, 20, 0.2);
    background-color: rgba(183, 116, 64, 0.708);
    color: rgb(56, 34, 7);
    border-radius:10px;
    padding: 2px;
    
}
.copyright{
    text-align: center;
}
.p3{
    padding: 30px;

}
h4{
    text-decoration: underline;
    font-size: 15pt;
}
#element_id {
    
    right:0;
    bottom:0;
    color: beige;
    text-decoration: none;
    text-align: center;
}