.card{
    width: 400px;
    /* border: 2px solid black; */
    border-radius: 25px;
    padding: 10px;
    margin: 10px;
    background-color: bisque;
    /* transition: 1s; */
    box-shadow: 5px 6px 8px rgb(116, 65, 3);
}

.card:hover{
box-shadow: 8px 9px 10px rgb(130, 3, 39);
}

img{
    width: 100%;
    border-radius: 25px;
}

img:hover{
    box-shadow: 3px 4px 5px rgb(222, 137, 32);
}

#pets{
    display: flex;
    justify-content: space-evenly;
    padding: 10px;
    background-image:linear-gradient(rgba(155, 12, 237, 0.5), rgb(255 255 0 / 0.5)), url(.avif);
    border-radius: 25px;
}

h2{
    color: #2e210b;
}

span{
    color: #87570b;
    text-decoration:underline;
}

h1{
    color: rgb(103, 45, 3);
    text-align: center;
}


/* Popup Modal CSS */
.modal {
  display: none; /* by default hidden */
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 70%;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

#caption {
  margin: 15px auto;
  text-align: center;
  color: #f1f1f1;
  font-size: 18px;
  max-width: 70%;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #ff4d4d;
}
