body{
font-family: Arial;
margin:0;
background-image:url("https://wallpapercave.com/wp/wp11842089.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
min-height:100vh;
}

/* HEADER */
header{
background:#db77e4;
color:white;
padding:15px;
text-align:center;
}

nav a{
color:white;
margin:10px;
text-decoration:none;
font-weight:bold;
}

/* HERO CENTER FIX */
.hero{
display:flex;
justify-content:center;
align-items:flex-start;   /* move upward */
height:90vh;
padding-top:120px;        /* controls how high */
text-align:center;
}

.hero-box{
background:rgba(255,255,255,0.85);
padding:30px;
border-radius:12px;
}

/* BUTTON */
.btn{
background:#db77e4;
color:white;
padding:10px 20px;
text-decoration:none;
border-radius:5px;
}

/* PET CARDS */
.pet-container{
display:flex;
justify-content:center;
gap:20px;
padding:40px;
flex-wrap:wrap;
}

.pet{
background:white;
padding:15px;
border-radius:10px;
text-align:center;
box-shadow:0 0 10px gray;
width:260px;
}

.pet img{
width:100%;
height:200px;
border-radius:10px;
}

button{
background:#e20b65;
color:white;
border:none;
padding:10px;
cursor:pointer;
border-radius:5px;
}

/* CONTENT BOX */
.content{
background:rgba(255,255,255,0.85);
padding:30px;
margin:40px auto;
width:70%;
border-radius:12px;
text-align:left;
}

/* FORM */
form{
background:rgba(255,255,255,0.9);
width:350px;
margin:auto;
padding:20px;
border-radius:10px;
}

input,textarea{
width:100%;
padding:10px;
margin:10px 0;
}