footer {
    background-color: #0F1215;
    border-top: 1px solid #434343;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.list>li a {
    text-decoration: none;
    color: white;
    font-size: 11px;
}

header>a>img {
    width: 150px;
}


.f {
    display: flex;
    align-items: flex-start;
    width: 40%;
    justify-content: space-between;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background-color: #0F1215;
}


.footer img {
    width: 17%;
}

@media screen and (max-width: 480px) {

footer {
    flex-direction: column;
    padding: 1rem
}

.f {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    color: white;
}

.footer img {
    width: 40%;
}

}