.recommended-article {
    margin-bottom: 15px;
  }
  .category-button {
    border: none;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin-top: -5px;
    margin-bottom: 10px;
    border-radius: 10px;
    font-family: "Courier New", Courier, monospace;
    width: 115px;
}

.green-gradient {
    background: linear-gradient(135deg, rgba(0, 255, 153, 0.8) 10%, rgba(0, 102, 0, 0.5) 100%);
    color: linear-gradient(135deg, #00ff99 2%, #006600 10%);
}

.red-gradient {
    background: linear-gradient(135deg, rgba(255, 99, 71, 0.8) 10%, rgba(139, 0, 0, 0.5) 100%);
    color: linear-gradient(135deg, #ff6347 2%, #8b0000 10%);
}
  body {
    font-family: "Courier New", Courier, monospace;
    background-color: #ffffff;
    color: #fff;
  }
  body h1 {
    color: rgb(46, 65, 46);
    font-size: 2rem;
    font-weight: bold;
    font-family: "Monospace", monospace;
  }
  body h2 {
    color: rgb(46, 65, 46);
    font-size: 1.5rem;
    font-weight: bold;
  }
  body h5 a {
    color: #006600;
    font-size: 1rem;
    font-weight: bold;
  }
  body p {
    font-size: 0.8rem;
  }
  .card {
    background-color: white;
    border: 1px solid #000;
    color: #333;
    padding: 5px 10px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin-top: 5px;
    border-radius: 20px;
  }
  .cold {
    border: 1px solid #000;
    color: #333;
    padding: 5px 10px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    margin-top: 5px;
    border-radius: 20px;
    max-height: 30em;
    overflow: hidden;
    position: relative;
  }
  .cold::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3em;
    background: linear-gradient(to top, white, transparent);
  }
  .load-more {
    display: block;
    width: 150px;
    text-align: center;
    padding: 10px;
    color: rgb(46, 65, 46);
    border: 0.1px solid #000;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
  }
  .navbar {
    background-color: rgba(0, 0, 0, 1);
    padding: 10px;
  }
  .navbar-brand img {
    height: 40px;
  }
  .slanted-text {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    transform: skew(-10deg);
    background: linear-gradient(135deg, #00ff99 0%, #006600 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 50px;
  }
  .page-item {
    margin: 0 5px;
  }
  .page-link {
    color: #333;
    border: 1px solid #333;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    background: linear-gradient(135deg, #00ff99 0%, #006600 100%);
  }
  .page-link:hover {
    background: linear-gradient(135deg, #3f3f3f 0%, #181918 100%);
    color: #fff;
  }
  li {
    list-style-type: none;
  }
  li a {
    /* text-decoration: none; */
    color: #006600;
    margin-bottom: 50px;
  }
  li a:hover {
    text-decoration: underline;
    color: #333;
  }
  .arrow {
    color: #006600;
    font-size: 0.5rem;
    margin-right: 5px;
  }