*{
  padding: 0;
  margin:0;
  box-sizing:border-box;
}
/*至頂欄*/
header{
  height: 6vh;
  width:100%;
  background-color: hsl(42, 52%, 39%);
  position: fixed;
  top:0;
  }
.menu{
  display:none;
  }
header h1{
  color:rgb(255, 255, 255);
  font-size: 2.2em;
  position: absolute;
  left: 5vw;
  top:0;
  line-height: 6vh;
  background-image: url(#);
  background-repeat:no-repeat;
  background-position:center;
  /*text-inndent:-9999px;*/
  }
header ul{
  position:fixed;
  right:3vw;
  }
  header li{
      text-decoration: none;
      display: inline;
      line-height: 6vh;
  }
  header a{
  font-size: 1.2em;
  color:white;
  text-decoration: none;
  margin-right:2vw;
  font-weight: bold;
  }
/*登入畫面框*/
body {
    background-color:antiquewhite;
  }
  
  .login-container {
    width: 500px;
    margin: 300px auto 0 auto;
    background-color: hsla(42, 52%, 49%, 0.792);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.675);
  }
  .login-container h2 {
    text-align: center;
    padding-bottom: 5px;
  }
  .login-container input[type="text"],
  .login-container input[type="password"] {
    width: 100%;
    padding: 15px 5px;
    margin-top: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
  }
  
  .login-container input[type="submit"],
  .login-container input[type="button"]{
    width: 100%;
    background-color: hsl(42, 52%, 39%);
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
  }
  .login-container button{
    width: 100%;
    background-color: hsl(42, 52%, 39%);
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
  }
  .login-container input[type="submit"]:hover,
  .login-container input[type="button"]:hover,
  .login-container button:hover {
    background-color: hsl(42, 52%, 29%);
  }
/*footer*/
footer{
  width:100%;
  position: fixed;
  bottom:0;
}
  footer nav{
    background-color: rgb(186, 127, 49);
    height: 80px;
    display:flex;
    align-items: center;
    justify-content:center;
}
footer ul{
    display:flex;
}
footer li{
    padding:5vw;
    list-style-type: none;
}
footer i{
    color:antiquewhite;
}
footer p{
  background-color: hsl(42, 42%, 19%);
  color:rgba(175, 175, 175, 0.691);
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
}