/* Structure and Layout */
body 
{
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #34495E;
    line-height: 1.6;

    background-image: url('images/pets.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

#content
{
    width: 80%;
    margin: 40px auto;
    padding: 25px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;

}
/* Typography */
h1
{
    color: #b83280;
    text-align: center;
    font-size: 36px;
    line-height: 1.2;
}

h2
{
    color: #d63384;
    text-align: center;
    font-size: 28px;
    line-height: 1.3;

}

h3
{
    color: #e84393;
    text-align:center;
    font-size: 22px;
    line-height: 1.3;
}

p
{
    color: #34495E;
    font-size: 16px;
}

/* links */
a
{
    color: #ff259d;
    text-decoration: none;
}
a:hover
{
    color: #ff1493;
}

/* Images */

.pet-img
{
    width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 5px;
    display: inline-block;
    transition: transform 0.3s ease;

}
.pet-img:hover
{
    transform: scale(1.05);
}

/* Tables */
table
{
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px ;

}
th, td
{
    border: 1px solid #d63384;
    padding: 10px;
    text-align: center;
}
th
{
    background-color: #fde0f0;;
}
tr:nth-child(even)
{
    background-color: #fff0f5;
}
tr:hover
{
    background-color: #ffe6f0;
}