body {

	background-color: #000;

  font-family: Microsoft JhengHei,PMingLiU,serif;

}

img {
  height: auto;
  max-width: 100%;
}


@media screen and (max-width: 480px) {

/*如果使用者視窗寬度 <= 480px */

  

  #Button {
    float: left;
  }

}

@media screen and (max-width: 768px) {

/*如果使用者視窗寬度 <= 768px */

  
  #Button {
    float: left;
  }

}

@media screen and (min-width: 768px) and (max-width: 992px) {

/*如果使用者視窗寬度 768px ~ 992px */

  
  #Button {
    float: left;
  }

}

@media screen and (min-width: 1200px) {

/*如果使用者視窗寬度 >= 1200px */

  

}

