*{
    padding: 0;
    margin: 0;
    border: none;
    box-sizing: border-box;
}

.body{
  width: 100%;
}

.header {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #ddd;
    height: 82px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

#header-menu {
    display: flex;
    padding-left: 5%;
    align-items: center;
    text-align: center;
}

#header-menu li{
    list-style-type: none;
    padding-right: 60px;
    display: flex;
    justify-content: center;
}

#header-menu li a{
  font-size: 17px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: black;
  text-decoration: none;
}

#header-menu li a::before{
  display: block;
  height: 0;
  content: attr(data-text);
  font-weight: 800;
  font-style: normal;
  overflow: hidden;
  visibility: hidden;
}

#header-menu li a:hover {
    font-weight: 800;
    font-style: normal;
}

#shop-link{
    color: red;
}

#logo-img img{
    height: 42px; /* will need to change this with media queries */
    width: auto;
    padding-right: 40px;
}


.burger-button{
  height: 100%;
  padding: 0 5%;
  display: none;
  background-color: white;
  align-items: center;
}

.burger-button img{
  display: flex;
  height: 50%;
}

#mobile-logo{
  display: none;
}

@media screen and (max-width: 1000px) {
    .header{
      background-color: white;
      position: fixed;
      z-index: 200;
      display: flex;
      width: 100%;
      border-bottom: 1px solid #ddd;
      height: 82px;
      align-items: center;
      overflow-x: hidden;
      justify-content: space-between;
    }

    .burger-button{
      display: flex;
      height: 100%;
      padding: 0 5%;
      background-color: white;
      align-items: center;
      border: 0;
    }

    .burger-button img{
      display: flex;
      height: 50%;
    }

    #logo-img img{
        height: 40px; /* will need to change this with media queries */
        width: auto;
        padding-right: 40px;
    }

    #desktop-logo{
      display: none;
    }

    #mobile-logo{
      display: flex;
    }

    #header-menu {
      width: 100%;
      display: none;
      flex-direction: column;
      background-color: #ddd;
      position: fixed;
      top: 82px;
      padding-left: 0%;
      z-index: 100;
      text-align: center;
    }

    #header-menu li{
      list-style-type: none;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding-right: 0;
    }

    #header-menu.show {
      display: flex;
    }

    #header-menu li a{
      font-size: 17px;
      font-family: proxima-nova, sans-serif;
      color: black;
      text-decoration: none;
      font-weight: 600;
      padding: 50px 0;
      width: 100%;
      font-size: 17px; /* will need to change depending on screen size */
    }

    #header-menu li a::before{
      display: block;
      height: 0;
      content: attr(data-text);
      font-weight: 800;
      font-style: normal;
      overflow: hidden;
      visibility: hidden;
    }

    #header-menu li a:hover {
        font-weight: 800;
        font-style: normal;
    }

    #header-menu a#shop-link{
        color: red;
    }
}
