body {
    background-color: aqua;
    text-align: left;
    cursor: url(images/fish/bobber.gif), auto;
    padding-bottom: 50px;
}

  #heading {
    color:rgb(24, 225, 51);
    text-decoration: underline;
  }
  #menubar{
    white-space: pre;
    font-size: 24px;
    font-family: cursive;
  }
  #mainText{
    color: rgb(24, 225, 51);
    font-size: 18px;
    font-family: cursive;
  }
  #csHeading {
    color:rgb(24, 225, 51);
    font-size: 28px;
    font-family: cursive;
    text-decoration: underline;
  }
  #pText{
    color: rgb(24, 225, 51);
    font-size: 16px;
    font-family: cursive;
  }
  #fText{
    color: rgb(24, 225, 51);
    font-family: cursive;
  }
  #meme-heading {
    color: rgb(24, 225, 51);
    text-align: center;
  }
  .ln {
    font-family: cursive;
    font-size: large;
  }
  .rectangle {
    height: 50px;
    width: 100vw;
    background-color: aquamarine;
    align-items: center;
  }
  .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Grid with auto-columns */
    gap:10px;
    padding: 10px;
    justify-items: center; /* Centers cards in their grid cells */
  }
  .card {
    min-width: 300px;
    width: auto;
    max-width: fit-content;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px;
    transition: transform 0.3s ease-in-out;
    border: 2px solid grey;
    padding-right: 10px;
  }

  .card-content {
    color:black;
    font-family: Consolas, monospace;
    padding-left:15px;
  }
  .card-title {
    color:black;
    font-size: 20px;
    font-weight: bold;
    font-family: Consolas, monospace;
    padding-left:15px;
  }
  .card-info {
    font-size: small;
  }
  .card-button {
    font-family: cursive;
    font-size: 12px;
    background-color: coral;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position:relative;
    left:20%;
    bottom: 5%;
  }

  a {
    color: coral;
    font-family: cursive;
  }
  
  area, * {
    cursor: url(images/fish/bobber.gif), auto;
  }
