/*
 - Multimedia Project 1
 - Degree Program: MultiMediaTechnology / Salzburg University of Applied Sciences
 - Author: Kimberly Ledesma
 - Year: 2026
 */

.footer-landing img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-landing {
  position: relative;
  width: 100%;
}

.footer-content {
    position: absolute;
    bottom: 60px;
    left: 50px;
    right: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 0 20px;

}

.footer-content a {
    text-decoration: none;
    color: white;
}

.footer-content a:hover {
    text-decoration: underline;
}

.left, .middle, .right {
    text-align: center;
}

@media (max-width: 768px) {
    .footer-content {
        bottom: 20px;
        left: 10px;
        right: 10px;
        grid-template-columns: 1fr 1fr 1fr;
        font-size: 1.2rem;
    }

    .left, .middle, .right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content, span {
        font-size: 0.8rem;
        margin-left: 2px;
        margin-right: 2px;
    }
}