table, th, td {
    border: solid 2px;
    border-collapse: collapse;
    padding: 10px;
}

.tabelle-1 {
    margin-top: 35px;
    margin-bottom: 35px;
    width: 100%;
}

.tab-titel {
    font-size: 25px;
    font-weight: bold;
}

.tr-1 {
    background-color: rgb(164, 245, 132);
}

.tr-2 {
    background-color: rgb(174, 179, 248);
}

.tr-3 {
    background-color: rgb(253, 179, 67);
}

.th-1 {
    width: 20%;
}

.th-2 {
    width: 35%;
}

.th-3 {
    width: 45%;
}


@media screen and (max-width: 600px) {
    .tabelle-1 {
        font-size: 10px;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .tab-titel {
        font-size: 15px;
    }
}

.link-1 {
    text-decoration: none;
    color: black;
    animation-name: animation_blink;
    animation-timing-function: ease-in-out;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes animation_blink {
    0% {opacity: 1;}
    50% {opacity: 0.1;}
    100% {opacity: 1;}
}