.attribution { 
    font-size: 11px; 
    text-align: center; 
    position: absolute;
    bottom: 130px;
  }
  .attribution a { 
    color: hsl(228, 45%, 44%); 
  }

  body {
    font-family: 'Kumbh Sans', sans-serif;
    background-color: rgb(255, 220, 21);
    color: hsl(0, 0%, 0%);
    margin: 0;
    padding: 0;
    display: flex; /* Enable Flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    min-height: 100vh; /* Ensure it takes at least the full viewport height */
    position: relative; /* Needed for positioning attribution at the bottom */
  }

  .container {
    background-color: white;
    width: 355px;
    height: 490px;
    border-radius: 10px;
    box-shadow: 9px 9px rgb(0, 0, 0);
    padding: 20px;
  }
  .container img {
    width: 100%;
    border-radius: 10px;
  }
  .container h1{
    font-size: 25px;
  }

 .container button {
    background-color: hsl(44, 100%, 49%);
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
  }
  .container button:hover {
    background-color: hsl(229, 100%, 52%);
    color: white;
    transition: 0.5s;
  }

  .container button {
    display: block;
    margin: 10px 0;
  }

  .container p, .container h1 {
    margin: 20px 0;
  }

  .container a {
    color: hsl(228, 45%, 44%);
    text-decoration: none;
    font-weight: bold; /* Make the link text bold */
    margin-left: 5px;
  }

  .author-info {
    display: flex;
    align-items: center; /* Align image and text vertically */
  }
  .author-info img {
    width: 40px;
    height: 40px;
  }