#main-header {
  font-family: bebasNeue;
  font-weight: lighter;
  font-size: 19px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 20px;
  color: #fff;
  background-color: black;
  align-items: center;

  & img {
    width: 100px;
  }

  & a {
    color: #d5d5d5;
  }

  & a:hover {
    color: #fff;
    text-shadow: 0 0 1rem #ffffffa5;
    transition: 250ms ease-out;
  }

  & a:not(:hover) {
    transition: 250ms ease-out;
  }

  & #desktop-nav ul li {
    list-style: none;
    display: inline-block;
    text-transform: uppercase;
    width: 130px;
    text-align: center;
  }

  /* estilo para todos elemetos exceto o ultimo */
  & #desktop-nav li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }

  & button {
    cursor: pointer;
    &:hover {
      transition: 250ms ease-out;
      transform: scale(1.1);
    }
    &:not(:hover) {
      transition: 250ms ease-out;
    }
  }
}

#sub-header {
  padding: 6px;
  box-sizing: border-box;
  background-color: #07be64;
  font-family: montserrat;
  font-weight: bolder;
  font-size: 13px;

  & * {
    margin: 0;
  }

  & p {
    width: 90%;
    margin: auto;
    text-align: center;
  }
}

#mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  body {
    margin-top: 95px;
  }
  #main-header {
    top: 0;
    position: fixed;
    z-index: 5;
  }

  #desktop-nav {
    display: none;
  }

  #mobile-nav {
    display: block;
    & button {
      background-color: transparent;
      border: none;
      outline: 0;
    }
    & img {
      width: 30px;
    }
  }
}

#mobile-menu {
  padding: 40px 30px;
  position: fixed;
  z-index: 3;
  background-color: black;
  height: 100vh;
  width: 180px;
  top: -20px;
  right: 0;

  & header #closeBtn {
    position: absolute;
    right: 30px;
    top: 40px;
    color: #fff;
  }

  & li {
    list-style-type: none;
    margin-top: 40px;
    padding: 6px 0;
    border-bottom: 2px solid rgba(255,255,255,.5);
  }

  & #jokerLogo {
    width: 100px;
    margin-top: 60px;
  }
}

#mobile-menu {
  display: none;
}
