/* Index page specific styles */
.footer-content {
    width: 1000px;
    margin: auto;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    height: 100%;
}

.footer-bottom {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    position: absolute;
    width: 1000px;
    height: 300px;
    bottom: 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    text-shadow: 0px 0 5px rgb(0 0 0 / 20%);
}

.footer-copyright {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    line-height: normal;
}

.footer-social img {
    width: 48px;
    filter: drop-shadow(0em 0em 0.3em rgba(0, 0, 0, 0.211));
    cursor: pointer;
    transition: 0.2s;
}

.footer-social img:hover {
    transform: translate(0px, -5px);
    transition: 0.5s;
}
