footer{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: var(--big-width);
}

.footer{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 10px;
    padding: 10px;
    width: 100%;
    height: fit-content;
    overflow: hidden;
    border: 5px solid var(--secondry-color);
    border-radius: 20px;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px 2px var(--secondry-color);
}

.link_titel_h2 {
    font-weight: bold;
}

.footer-link-image {
    fill: var(--secondry-color);
    transition: fill .2s ease;
}

.footer-link-image:hover {
    fill: var(--secondry-color-hover);
}

.footer_links {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    gap: 5px;
}

.footer_link_div {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--link-color);
    border: 2px solid var(--secondry-color);
    border-radius: 20px;
    height: 30px;
}

.aw-podcast {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.link {
    transition: font-weight .1s ease;
}

.link:hover{
    font-weight: bold;
}