
/* Grundlegendes Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    line-height: 1.6;

}

header {
    background-color: #333;
    padding: 10px 0;
}



nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 20px;
    text-align: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    bottom: 0;
}



.col-1 {width: 16.666%;}
.col-2 {width: 33.333%;}
.col-3 {width: 50%;}
.col-6 {width: 100%;}

.leistungs-box {
    background-color: #3d3f45;
    color: white;
    text-align: center;
    padding: 1rem 3rem 2.5rem;
}



.leistung-container {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:30px;
    justify-content: center;
    align-content:center;
    padding:20Px;
    margin:0 auto;
    width:60%;
}

.leistung-container .col-3 {
    width:100%;
}

.leistung-ansehen-button {
    text-decoration:none;
    height:40Px;
    border: 2px solid #fff;
    display:inline-block;
    padding-top: .5rem;
    width: 50%;
    background-color: lightblue;
    margin-top: 1rem;
    border-radius: 50px;
}


