@charset "utf-8";
/* CSS Document */

#services_section {
    padding: 70px 0;
    background-color: #000000; /* Schwarzer Hintergrund */
}

#services_section h2 {
    font-size: 50px;
    text-align: center;
    color: white;
}

.flex_container {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.card {
    width: 350px;
    background-color: #232323; /* Dunkles Grau */
    border-radius: 100px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    max-width: calc(90% - 40px);
}

.card * {
    text-align: center;
    color: white;
}

.card a {
    background-color: #800080; /* Lila */
    width: min-content;
    padding: 15px 40px;
    border-radius: 50px;
    margin: 0 auto;
    text-decoration: none;
    color: white;
    border: 4px solid #800080; /* Lila Rand */
    transition: 150ms ease-in-out;
}

.card a:hover {
    background: transparent;
    color: #800080;
}
