/* General Styles */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff093;
  }
  
  .container {
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
  }
  
  /* Card Styles */
  .card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex; /* Allow image and content to be side-by-side */
    flex-direction: column; /* Stack elements vertically */
  }
  
  .card-content {
    flex: 1; /* Makes content area flexible within card */
  }
  
  .card img {
    width: 100%; /* Image takes full width of card */
    margin-bottom: 20px;
    border-radius: 5px; /* Rounded corners for image */
  }
  
  .card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .card-content p {
    color: #666;
    line-height: 1.5;
  }
  
  .author {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  
  .author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
  }
  .attribution {
    font-size: 11px;
    text-align: center;
  }
  
  .attribution a {
    color: hsl(228, 45%, 44%);
  }