.footer{
    width: 100%;
    height: fit-content;
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* logo */

.footer img{
    width: 30px;
    height: 30px;
}

/* text */

.footer p:first-of-type{
    width: 350px;
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
    color: var(--text2);
}

/* copyright */

.footer p:last-of-type{
    font-size: 14px;
    color: var(--text1);
}

/* --- Media --- */

@media screen and (max-width: 600px) {
    
    .footer p:first-of-type{
        width: 80%;
    }
}