body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdfdfd;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #ff7043;
    color: white;
    padding: 15px;
    text-align: center;
}

h1 {
    margin: 0;
}

.dog-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
    flex: 1;
}

.dog-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 15px;
    width: 280px;
    min-height: 350px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.dog-card:hover {
    transform: scale(1.05);
}

.dog-card img {
    border-radius: 10px;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
}

button {
    background-color: #ff7043;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

button:hover {
    background-color: #ff5722;
}

a {
    text-decoration: none;
}
a button {
    display: inline-block;
    width: 100%;
}

footer {
    background-color: #ff7043;
    color: white;
    padding: 10px 15px;
    font-size: 20px;
    text-align: left;
}
