

.bila {
    background-color: rgb(255, 255, 255);
}
h2{
    color: #000000;
    font-size: 2em;
    margin-top: 50px;
}

.adopce h2 {
    text-align: center;
    font-size: 2.5em;
    padding: 0;
    margin-top: 5% 0;
}

.karta img {
    height: 200px;
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

.karta {
    background-color: #ffffff;
    color: #000000;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.291);
    width: 250px;
    padding: 20px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.karta p {
    text-decoration: none;
    color: #000000;
    margin: 5px 0;
}

.karta h3 {
    text-decoration: none;
    color: #000000;
    font-size: 1.5em;
    margin: 20px 0 0 0;
}

.karta:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.346);
}

.tlacitka {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin-top: 15px;
}

.tlacitko {
    background-color: #d6d6d6;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    flex: 0 0 25%; /* Všechny tlačítka budou stejně široká (např. 30% šířky rodiče) */
    max-width: 100px; /* Maximální šířka pro tlačítka */
}

.tlacitko p {
    margin: 0;
    font-size: 0.9em;
    color: #000000;
}

.karty {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.adopce {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

