
/*Standard Karten start*/
.Nachzucht{
    text-align: center;
}

.Kartenmodul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    transition: 2s;

}

.card{
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: 40px;
    margin-top: 0;
    background-color: var(--grauton);
    border-radius: 40px;
    box-shadow: 0px 9px 15px rgb(128, 128, 128);
    transition: 0.5s;

}

.card > img{
    height: 300px;
    object-fit: cover;
    margin: 0;
    box-shadow: none;
    border-radius: 40px 40px 40px 40px
}

.card:hover{
    scale: 102%;
    box-shadow: 0px 18px 30px rgb(59, 59, 59);
}

img:hover{
    pointer-events: none;
}
/*Standard Ende*/

/*Verpaarungsabschnitt start*/
.Wurfheader{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.Wurfheader > p1{
    position: relative;
    max-width: 80%;
    min-width: 60rem;
    background-color: var(--grauton);
    border-radius: 25px;
    margin-bottom: 2rem;
    margin-top: 4rem;
    z-index: -2;
}

.Paarung{
    display: flex;
    gap: 5rem;
}

.profilkopf{
    position: relative;
    top: 2rem;
    background-color: var(--schriftfarbe);
    max-width: 57rem;
    border-radius: 50px;
}

.profilkopf > img{
    width: 53rem;
    z-index: 2;
    box-shadow: none;
    border: solid px var(--schriftfarbe);
    margin: 2rem;
}

.profilkopf > p1{
    font-family: Indie Flower;
    font-size: 1.8rem;
    position: relative;
    color: white;
    top: 1rem;
}

/*Verpaarungsabschnitt Ende*/

/*Handyversion */
@media (max-width: 1100px){
    .card > img{
        height: 550px;
        object-fit: cover;
        margin: 0;
        box-shadow: none;
        border-radius: 40px 40px 40px 40px
    }
}