footer{
    width: 100vw;
    height: fit-content;
    background-color: var(--black);
    padding-block: 30px;
}
footer > div{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 84%;
    margin-left: auto;
    margin-right: auto;
}
footer a{
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.25s;
}
footer a:hover{
    color: var(--orange);
    transition: 0.25s;
}
.footer__links{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__rs{
    display: flex;
    gap: 20px;
}
.footer__rs a{
    color: var(--orange);
    font-size: 30px;
    transition: 0.25s;
}
.footer__rs a:hover{
    color: white;
    transition: 0.25s;
}


@media screen and (max-width:650px) {
    
footer > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 84%;
    margin-left: auto;
    margin-right: auto;
}
}