/* CSS rules for screens up to 800px width, For tablets: */
@media only screen and (max-width: 800px) {
  .main {
    width: 80%;
    padding: 0;
  }
  .right {
    width: 100%;
  }
}

/* CSS rules for screens up to 500px width, For mobile phones: */
@media only screen and (max-width: 500px) {
  .menu,
  .main,
  .right {
    width: 100%;
  }
}

/* enlarge text on hover for desktop */
@media only screen and (min-width: 501px) {
  a {
    padding: 0.2rem 0.6rem 0.3rem;
    font-size: 100%;
    color: inherit;
  }

  .myclass {
    display: inline-block;
  }

  a:hover .myclass {
    transform: scale(1.2);
  }

  #nostr-zap-target.zap-link {
    font-size: 1em;
    transition: transform 0.1s;
  }

  #nostr-zap-target.zap-link:hover {
    transform: scale(1.2);
  }
}


/* Disable pull-to-refresh */
body {
  overscroll-behavior-y: contain;
  touch-action: pan-y;
  background-color: black;
}

/* Apply color to all anchor tags within the main container */
.main a {
  color: MediumSeaGreen;
  text-decoration: none;
}

h1, h2, h3 {
  margin: 0;
  margin-top: 0px;
  margin-bottom: 15px;
}

p {
  margin: 0;
  margin-bottom: 2px;
}

/* CSS for emoji's */
.emoji-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.emoji-item img {
  width: 40px; 
  height: 40px;
  margin-right: 10px;
}

.copy-button {
  padding: 6px 10px;
  border: none;
  background-color: Orange;
  color: #fff;
  cursor: pointer;
}
