
  body {
  background-color: white;
  color: black;
}
  .main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e7f3ff;
    overflow: scroll;
  }
  .lazy-img {
    opacity: 0.5;
    transition: opacity 1s ease-in-out;
  }
  .lazy-img.fade-in {
    opacity: 1;
  }
  .card {
    background-color: white;
    width: 90%;
    height: auto;
    border: 1px solid silver;
    border-radius: 10px;
   margin-bottom: 20px; 
    box-shadow: 4px 4px 10px 1px silver;
  }
  .card h1, p {
    text-align: left;
    margin-left: 10px;
  }
  .card h1 {
    color: #0e47a7;
    text-decoration: underline;
  }
  .card .date {
    background-color: #e0e6ff;
    color: black;
    margin-top: 0;
    margin-left:-42%;
    width: 50%;
    border: 1px solid #6280fd;
    border-radius: 5px;
    padding: 6px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
  }
  .card .content {
    
  }
  .link {
    text-decoration: none;
    color: black;
  }
  .card button {
    width: 80px;
    background: linear-gradient(10deg, #0446b5, #a2fac3);
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-left: -50%;
    width: 100px;
    padding: 5px;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
  }
  .card img {
    width: 50%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.5);
  }
