/* Reset layout */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Orange background and centered layout */
body {
  background-color: #f15a29;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

/* Full clickable area */
.full-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Emoji style */
.emoji {
  font-size: 6rem; /* Smaller size for desktop */
  user-select: none;
  pointer-events: none; /* Allows full link to be clickable */
  line-height: 1;
}

/* On small screens, slightly bigger emoji */
@media (max-width: 600px) {
  .emoji {
    font-size: 25vw;
  }
}
