body {
  font-family: Arial, sans-serif;
  margin: 0;
  
  background-color: #fff;
}

header {
  background-color: #ffffff; /* White background */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Figtree', sans-serif;
  padding-bottom: 10px;
  padding-left:10px;
  padding-top:10px;
  font-weight: 900;
  color: #000000; /* Black site name */
  border-bottom: 1px solid #ccc; /* Add bottom border */
}
.site-name {
  font-size: 24px;
  color: #111; 
  text-decoration: none; 
}


a {
  color: #111; 
  cursor: pointer;
  text-decoration: none; 
}


/* Remove the styles for the search bar */
.search-bar {
  display: none;
}

main.main {
    padding: 20px;
}

.section-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.emoji-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  gap: 5px;
}

.emoji {
  font-size: 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.emoji:hover {
  transform: scale(1.2);
}

footer {
  background-color: #ffffff;
  color: #111;
  width: 100%;
  bottom: 0;
  left: 0;
}

.categories-title {
  padding-top: 100px;
  text-align: center;
  font-size: 18px; 
  font-weight: 600; 
  color: #333; 
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.footer-links a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #135edd;
}
.footer-links {
  display: flex;
  flex-wrap: wrap; /* Allow links to wrap to the next line */
}

.footer-links a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s;
  margin-right: 10px; /* Add some spacing between links */
}

/* Apply different styles for smaller screens */
@media screen and (max-width: 600px) {
  .footer-links {
    flex-direction: column; /* Stack links vertically */
  }

  .footer-links a {
    margin-bottom: 5px; /* Add space between vertically stacked links */
  }
}

.copied-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 999;
  display: none;
}
