div.fixed {
  position: fixed;
  top: -30px;
  right: 0;
  text-align: left;
  padding: 30px;
  
  img {
  	width: 150px;
  }
}

@media screen and (max-width: 600px) {
  div.fixed {
      top: auto;
      bottom: 50px;
      right: 0;
      
      img {
      	width: 180px;
      }
  }
}