.footer {
margin-top: 80px;
border-top: 1px solid var(--clr-white-hover);
}
.footer__wrapper {
padding: 24px 0px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.footer__text {
color: var(--clr-gray);
}
.footer__text a {
color: var(--clr-gray);
text-decoration: underline;
}
@media screen and (max-width: 1024px) {
.footer__wrapper {
flex-direction: column;
align-items: center;
text-align: center;
gap: 24px;
}
}