* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  html{
    font-family: Helvetica, Arial, sans-serif;
  }
  /*
  1. Từ ngoài vào trong
  2. Từ trên xuống dưới 
  3. TỔng quan đến chi tiết
  */
  /* Công thức
  1. Vị Trí
  2. Kích thước
  3. Màu sắc
  4. style (font, dạng hình tròn, vuông bla bla)
  */
  #main{
  }
  #header{
    height: 46px;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  #nav  {
    display: inline-block;
  }
  #nav, .subnav{
    list-style-type: none;
  }
  #nav > li{
    display: inline-block;
  }
  #nav li{
    position: relative;
  }
  #nav > li > a{
     color: #fff;
     text-transform: uppercase;
  }
  #nav li a{
    text-decoration: none;
    line-height: 46px;
    padding: 0 24px;
    display: block;
  }
  #nav li:hover .subnav{
    display: block;
  }
  #nav > li:hover > a,
    #nav .subnav li:hover a{
     color: #000;
    background-color: #ccc;
  }
  #nav .subnav{
    display: none;
    min-width: 160px;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
  }
  #nav .subnav a{
    color: #000;
    padding: 0 12px;
    line-height: 38px;
  }
  #nav .nav-arrow-down{
    font-size: 14px;
  }
  #header .search-btn{
    float: right;
    padding: 0 21px;
  }
  #header .search-btn:hover {
    cursor: pointer;
    background-color: #f44336;
  }
  #header .search-icon{
    color: #fff;
    font-size: 20px;
    line-height: 46px;
  }
  #slider{
    margin-top: 46px;
    padding-top: 50%;
    background: url('../img/Lake.jpg') top center / cover no-repeat ;
  }
  #content{
  }
  #footer{
  }