/* Media query for mobile devices */
@media only screen and (max-width: 768px) {
    .container {
      padding: 10px;
    }
  
    .board {
      flex-direction: column;
    }
  
    .column {
      margin: 10px 0;
      min-width: 80%;
    }
  
    .article-card {
      width: auto; /* Allow cards to adapt to smaller screens */
    }
    .card-header {
        width: 100%;
        background-color: #c1c1c1;
        border-top-right-radius: 15px;
        border-top-left-radius: 15px;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 10px;
        text-align: center;
      }
  }

  @font-face {
    font-family:'Roboto';
    src:url('Roboto/Roboto-Regular.ttf');
    font-weight:normal;
    font-style:normal;
}

@font-face {
    font-family: 'protestRiot';
    src: url('Protest_Riot/ProtestRiot-Regular.ttf');
}
body {
    font-family:'Roboto',sans-serif;
}
body {
    margin: 0;
    padding: 0;
    background-image: url("bg.jpg"); /* The image used */
    background-color: #1b006a; /* Used if the image is unavailable */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    background-attachment: fixed;
}
  
  .container {
    width: 100%;
    padding: 0px;
  }
  
  .board {
    display: flex;
    justify-content: space-between;
  }
  
  .column {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    border: 0px solid #ddd;
    border-radius: 5px;
  }
  
  .column h3 {
    margin-left: 20px;
    margin-bottom: 10px;
    color: #ddd;
  }
  
  .column ul {
    list-style: none;
    padding: 0;
  }
  
  .article-card {
    margin-bottom: 10px;
    padding: 0px;
    border: 1px solid #ddd;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ddd;
    opacity: .9;
    /* Adjust width and height as needed */
    max-width: 100%;
  }

  .article-card-credits {
    margin-bottom: 10px;
    padding: 0px;
    border: 1px solid #ddd;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ddd;
    opacity: .2;
    /* Adjust width and height as needed */
    max-width: 100%;
  }
  
  .article-card img {
    /* Adjust image size as needed */
    max-width: 70%;
    max-height: 150px;
    margin-bottom: 5px;
  }
  
  .article-card h4 {
    margin-bottom: 5px;
  }

  .article-card p {
    text-align: center;
  }
  
  .article-card a {
    text-decoration: none;
    color: #007bff;
    text-align: center;
    margin-bottom: 10px;
  }
  
  /* Optional card hover styles */
  .article-card:hover {
    opacity: .95;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  img {
    border-radius: 15px;
    margin: 10px;
  }

  p {
    padding: 10px;
  }

  .card-header {
    width: 100%;
    background-color: #c1c1c1;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
    text-align: center;
  }
  .card-sub-header {
    width: 100%;
    background-color: #c1c1c1;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
    text-align: center;
  }