#footer{
    display: flex;
    justify-content: space-evenly; /* verteilt Links gleichmäßig */
    align-items: center;
    background-color: #ab2524; /* gleiche Farbe wie Menü */
    padding: 15px 0;
    width: 100%;
}

#footer a{
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

#footer a:hover{
    color: #ffd000;
}