body {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
      "Lucida Sans", Arial, sans-serif;
    background-color: #333;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
  }

  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 980px;

    margin: auto;
    flex-direction: column;
    flex-wrap: wrap;

    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    gap: 5px;
  }

  .column {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    text-align: center;
    margin: auto;
  }

  .box {
    background-color: #cccccc;
    border: 1px solid #cccccc;
    border-radius: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    padding: 10px;
    width: 140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    cursor: pointer;
    transition: opacity 0.5s;
  }

  img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
  }

  .animal-name {
    font-size: 18px;
    font-weight: bold;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
  }
  .modal-button {
    background-color: #4caf50;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 20px 2px;
    cursor: pointer;
  }

  @media (max-width: 600px) {
    .container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);

      grid-gap: 10px;

      size: 25%;
      width: 25%;
    }
  }