/* Container for links with flexibility and centering */
.article-button{
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    margin-top: 3rem;
    flex-wrap: wrap;
  }
  
  /* Buttons inside the link container */
  .btnArticle {
    width: 400px;
    height: 120px;
    background-color: var(--black-);
    box-shadow: 4px 4px 2px var(--green-);
    padding: 10px;
    margin: 0 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Hover effect for buttons */
  .btnArticle:hover {
    box-shadow: none;
    padding: 10px;
  }
  .btnArticle:hover a {
    color: var(--greenContrast-);
  }
  
  /* Links inside the buttons */
  .btnArticle a {
    font-size: 20px;
    font-weight: 800;
    color: var(--green-);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
  }
  
  /* Styles for screens up to 1600px */
  @media screen and (max-width: 1600px) {
    .article-button{
      max-width: 1000px;
      gap: 55px;
    }
    .btnArticle {
      width: 300px;
      height: 100px;
    }
    .btnArticle a {
      font-size: 16px;
      font-weight: 800;
    }
  }
  
  /* Styles for screens up to 800px */
  @media screen and (max-width: 800px) {
    .article-button{
      max-width: 700px;
      gap: 45px;
    }
    .btnArticle {
      width: 250px;
      height: 70px;
    }
    .btnArticle a {
      font-size: 12px;
      font-weight: 800;
    }
  }
  
  /* Styles for screens up to 500px */
  @media screen and (max-width: 500px) {
    .article-button{
      max-width: 700px;
      gap: 45px;
    }
  }
  