
/* M.TUNG Studio — clickable logo button */
.mtung-logo-button {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 9999;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}
.mtung-logo-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}
.mtung-logo-button:hover {
  opacity: .65;
  transform: scale(1.04);
}
@media (max-width: 700px) {
  .mtung-logo-button {
    top: 16px;
    left: 16px;
    width: 38px;
    height: 38px;
  }
}
