body{
    font-family: Arial, sans-serif;
    background-color: #fff7ef;
    text-align: center;
    margin: 0;
}

/* Fundo com patinhas */
body::before{
    content: "🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾";
    position: fixed;
    font-size: 40px;
    opacity: 0.08;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 120px;
    pointer-events: none;
}

/* Título */
h1{
    margin-top: 30px;
    color: #ff7b54;
    font-size: 40px;
}

/* Campo de busca */
input{
    padding: 8px;
    border-radius: 8px;
    border: 2px solid #ffb26b;
    outline: none;
}

/* Botão */
button{
    padding: 10px 20px;
    margin: 20px;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    background-color: #ff7b54;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

button:hover{
    background-color: #ff5722;
    transform: scale(1.05);
}

/* Container */
#container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Card do cachorro */
.card{
    background: white;
    margin: 15px;
    padding: 15px;
    border-radius: 15px;
    width: 250px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover{
    transform: translateY(-5px);
}

/* Imagem */
.card img{
    width: 100%;
    border-radius: 10px;
}

/* Nome da raça */
.card h3{
    color: #ff7b54;
}

/* Texto */
.card p{
    color: #555;
}