
.footer-container {
    background-color: #000000;  
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Popis', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-bottom {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 10px;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: center;
    margin: 0;
}

.footer-social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.footer-social-links li a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-links li a:hover {
    color: #f5d832;
    transform: scale(1.2);
}
