#header{
   display: inline-block;
   position: fixed;
   top: 40px;
   left: 40px;
   z-index: 99;
}

#header a{
    display: flex;
    align-items: center;
    justify-content: center;
}

#header a h1{
    font-size: 35px;
    color: #222;
    font-family: 'twayair', sans-serif;
    font-weight: normal;
}
























/* mobile */
@media screen and (max-width: 767px){

  #header{
     top: 0;
     left: 0;
     padding: 0 5%;
     box-sizing: border-box;
     width: 100%;
     height: 60px;
     display: flex;
     align-items: center;
  }

  #header a{
      width: 170px;
  }

  #header a img{
      width: 100%;
  }

  #header a h1{
      font-size: 25px;
  }

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

  #header{
     top: 30px;
     left: 30px;
  }

  #header a{
      width: 200px;
  }

  #header a img{
      width: 100%;
  }


}
