* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  background: linear-gradient(to right, #252525);
  color: #fff;
  padding-top: 80px;
  overflow-x: hidden;
}

.full_article_container {
  width: 100vw;
  padding: 3rem 15rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article_content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.article_content p {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.6;
}

.article_content ul {
  font-size: 1rem;
  margin: 1rem 0;
}

.article_content ul li {
  margin: 0.5rem 0;
}

.back_button {
  margin-bottom: 2rem;
}

.back_link {
  color: #ccff01;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
}

.back_link:hover {
  text-decoration: underline;
}

/* Footer Section */
footer {
  width: 100%;
  padding: 2rem 15rem;
  background: #1d1d1d;
  color: #fff;
  text-align: center;
  font-size: 1rem;
}

footer a {
  color: #ccff01;
  text-decoration: none;
}

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

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .full_article_container {
    padding: 2rem 1rem;
  }

  footer {
    padding: 2rem 1rem;
  }
}
