body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 40px;
    background-color: #f5f5f5;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
}

h2 {
    margin-top: 50px;
    margin-bottom: 20px;
}


.dog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 180px);
    gap: 25px;
}

.dog-card {
    background: white;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

.dog {
    width: 175px;
    height: 175px;
    border-radius: 10px;
    background-image: url(https://users.ct.fh-salzburg.ac.at/dogs.webp);
    margin-bottom: 8px;
}


.dog-card p {
    font-size: 14px;
    margin: 5px 0;
}

.featured {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    align-items: center;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.15);
    max-width: 450px;
}