.Zertifikate{
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #f8fafc;
}

.Zertifikate-cards{
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.Z-card{
    width: 300px;
    height: 200px;
    padding: 10px;
    box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.04),
    0 6px 18px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    
}
.Z-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 14px 32px rgba(0, 0, 0, 0.22);
}

.Z-card-ribbon{
    width: 100%;
    height: 33%;
}

.Z-card-text h2{
    color: #111b34;
}

.Z-card-text h4{
    color: gray;
    font-weight: 200;
}

.Z-card-text{
    width: 100%;
    height: 33%;
}

.Z-card-link{
    position: absolute;
    bottom: 0;
    width: 93%;
    height: 13%;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    margin-bottom: 10px;
}

.Z-card-link:hover{
    background-color: #DFE9F6;
}

.anzeigen{
    background-color: transparent;
    border: 0px;
    color: #0e74ff;
    font-size: 0.8rem;
}

@media (max-width: 500px){
    .Zertifikate{
        padding-left: 0px;
    }
    .Zertifikate-cards{
        padding-top: 40px;
        flex-direction: column;
        align-items: center;
    }
}


