/*================== FOOTER =======================*/
.footer {
    background-color: #333;
    color: white;
    padding: 20px 10px;
    width: 100%;
}

.footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .footer-column {
            width: 22%;
            padding: 10px;
        }
        .footer-column h3 {
            margin-bottom: 10px;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column ul li {
            margin-bottom: 8px;
        }
        .footer-column ul li a {
            color: white;
            text-decoration: none;
        }
        .footer-column ul li a:hover {
            text-decoration: underline;
        }
        .social-links a {
            display: inline-block;
            margin: 5px;
            color: white;
            font-size: 1.7rem;
            transition: 0.3s;
        }
        .social-links a:hover {
            color: #1da1f2;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 20px;
            padding-top: 10px;
            border-top: 1px solid #555;
        }
        
        @media (max-width: 768px) {
            .footer-container, .footer-bottom {
                width: 100%;
                font-size: 50%;
            }
            .footer-column {
                width: 25%;
                padding: 3px;
            }
            
            .social-links a {
                font-size: .7rem;
                margin: 2px;
            }
        }