Footer {
  clear: both;
  /* 設定footer的高度 */
  /* height: 70px; */
  height: fit-content;
  box-sizing: border-box;
  /* 設定footer絕對位置在底部 */
  /* position: fixed; */
  /* bottom: 0; */
  /* 展開footer寬度 */
  width: 100%;
  background-color:#505050;
  padding: 10px;
}

#footerContainer {
  width:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  text-align:center;
}

#footer-left-content {
  width: 50%;
  font-size: 12px;
  color: white;
  /* position: relative; */
  /* margin-left: 5%; */
}

#footer-right-content {
  width: 50%;
  font-size: 12px;
  color: white;
  /* position: absolute;
  margin-left: 65%; */
}

@media (max-width: 480px) {
  #footer-left-content,
  #footer-right-content {
    transform: scale(0.8);
  }
}

/* @media screen and (max-width: 480px) {
  Footer {
  clear: both;
  height: 70px;
  box-sizing: border-box;
  position: relative;
  bottom: 0;
  width: 100%;
  background-color:#505050;
  padding-top: 10px;
}


  #footer-left-content {
    padding: 5px;
    float:left;
    width: 35%;
    font-size: 8px;
    color: white;
    position: relative;
    margin-left: 5%;
  }

  #footer-right-content {
    padding: 3px;
    float:left;
    width: 35%;
    font-size: 8px;
    color: white;
    position: absolute;
    margin-left: 50%;
  }
} */
/* @media only screen and (max-width: 320px) {
    #footer-right-content {
    padding: 3px;
    float:right;
    width: 40%;
    font-size: 8px;
    color: white;
    position: absolute;
    margin-left: 50%;
  }
} */
