body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

h1, h2 {
    margin-top: 30px;
}

.dog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, 175px);
    gap: 15px;
    margin-bottom: 20px;
}

.dog-card {
    width: 175px;
}

div.dog {
    width: 175px;
    height: 175px;
    border-radius: 10px;
    background-image: url(https://users.ct.fh-salzburg.ac.at/dogs.webp);
}

.dog-card p {
    margin: 5px 0 0 0;
    font-size: 14px;
}