/* Global Styling */
body,
h1,
h2,
h3,
p,
ul {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: white;
}

body {
  background-color: #121212;
  line-height: 1.6;
}

/* Header Styling */
.header {
  background-color: #1e1e1e; /* Slightly lighter shade for distinction */
  color: #ffdd57; /* Match with page title color scheme */
  text-align: center;
  padding: 20px;
  animation: fadeInDown 1s ease-in-out;
}

/* Page Title Styling */
.page-title {
  background-color: #1e1e1e;
  color: #ffdd57;
  padding: 30px 0;
  text-align: center;
  border-bottom: 3px solid #ffdd57;
  margin-bottom: 20px;
}

.page-title h1 {
  margin: 0;
  font-size: 2.5em;
  animation: fadeIn 1s ease-in;
}

/* Main Content Styling */
.main-content {
  padding: 20px;
}

section {
  margin-bottom: 20px;
}

h2 {
  color: #ffdd57;
  border-bottom: 2px solid #ffdd57;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.code-block {
  background-color: #1e1e1e;
  border: 1px solid #333;
  padding: 15px;
  position: relative;
  margin-bottom: 20px;
}

.code-block pre {
  margin: 0;
}

.copy-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ffdd57;
  color: #121212;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 0.875em;
}

.highlight {
  background-color: #1e1e1e;
  border: 1px solid #333;
  padding: 10px;
  margin-bottom: 20px;
}

/* Footer Styling */
footer {
  background-color: #1e1e1e;
  color: #ffdd57;
  padding: 20px 0;
  text-align: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.footer-links li {
  display: inline;
  margin: 0 10px;
}

.footer-links a {
  color: #ffdd57;
  text-decoration: none;
  font-size: 1.5em;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Footer Styling */
.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.footer .social-links {
  margin-bottom: 1rem;
}

.footer .social-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.5rem; /* Adjust icon size */
  transition: color 0.3s ease-in-out;
}

.footer .social-links a:hover {
  color: #ffdd57;
}

/* Footer Styling */
.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.footer .social-links {
  margin-bottom: 1rem;
}

.footer .social-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.5rem; /* Adjust icon size */
  transition: color 0.3s ease-in-out;
}

.footer .social-links a:hover {
  color: #ffdd57;
}

