body {
    background-color: #ffffff;
    color: #212529;
}

.navbar {
    background-color: #212529;
}

.navbar-brand,
.nav-link {
    color: #ffffff !important;
}

#page-top {
    margin-top: 54px;
}

.section {
    padding: 60px 0;
}

.section h2 {
    margin-bottom: 40px;
}

.footer {
    background-color: #212529;
    color: #ffffff;
    padding: 20px 0;
}

.footer a {
    color: #ffffff;
}

.section {
    padding: 60px 0;
}

.section h2 {
    margin-bottom: 40px;
}

.badge {
    margin: 5px 5px 5px 0;
}

.badge-primary {
    background-color: #222222;
}

.badge-secondary {
    background-color: #6c757d;
}

.badge-success {
    background-color: #e2e2e2;
    color: black;
}

.person-img {
    width: auto !important;
    border-radius: 10px;
    min-height: 310px;
}

.software-box {
    background-color: #e7e7e7 !important;
}

.dark-section {
    background-color: #f3f3f3;
}

.column-box {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 15px 0;
    min-height: 250px;
    /* gleiche Höhe für alle Boxen */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.column-box h3 {
    margin-bottom: 5px;
}

.column-box h4 {
    font-size: 16px;
}

.column-box .link {
    color: #2c2c2c;
}

video {
    position: absolute;
    z-index: 9999;
    height: 100%;
    background-color: black;
    top: 0px;
    left: 0px;
    animation: fadeOut 3s forwards 2s; /* 3s Dauer, 2s Verzögerung */
}

.startimg {
    display: none;
}

/* Animation, um das Video auszublenden */
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}


.service-box {
    min-height: 300px;
}

#contact .name {
    margin-top: 15px;
    font-weight: bold;
}

#contact .position {
    color: #6c757d;
    margin-top: 5px;
}

.contact-link {
    color: #000000;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.info-container {
    margin-top: 90px;
}

@media screen and (max-width: 768px) {
    .column-box {
        min-height: 0px;
    }

    .column-box .link {
        margin-top: 10px;
    }
}

@media screen and (max-width: 991px) {
    video {
        display: none;
    }
    .startimg {
        position: absolute;
        z-index: 9999;
        height: 100%;
        background-color: black;
        top: 0px;
        left: 0px;
        animation: fadeOut 3s forwards 2s;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .smaller-header {
        font-size: 20px;
    }
}