/* Footer CSS */

footer{
    color: var(--white);
    font-family: var(--lato-font);
    font-weight: 600;
    padding: 2em; 
}

.footer-top{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo{
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-logo img{
    width: 100%;
}

/* Social Links */

.socials{
    display: flex;
}

.social{
    width: 50px;
    margin: 10px 5px;
    opacity: 50%;
    transition: 0.2s ease-in-out;
}

.social:hover{
    opacity: 100%;
}

.social img{
    width: 100%;
}

.footer-division{
    opacity: 50%;
    width: 80%;
}

/* Legal Links - Terms & Conditions etc. */

.legal-stuff{
    text-align: center;
}

.copyright{
    margin: 15px 0;
    padding-top: 20px;
}

.legal-links a{
    text-decoration: none;
    color: var(--white);
    padding: 5px;
    margin: 5px;
    transition: 0.2s ease;
}

.legal-links a:hover{
    text-decoration: underline;
    color: var(--yellow);
}

/* Joseph Designs Logo */

.website-by{
    margin-top: 20px;
}

.website-by p{
    margin-bottom: 0;
}

.joseph-designs{
    margin: 0;
    width: 120px;
    height: 100%;
    padding: 0;
}

.joseph-designs img{
    width: 120px;
    margin: 0;
    padding: 0;
}

/* Footer Media Tag */

@media (max-width: 522px){
    .footer-top{
        flex-direction: column;
        text-align: center;
    }
}