footer {
    background: var(--black);
    text-align: center;
}

.footer__inner {
    padding: 20px;
     display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.company__logo {
    width: 80px;
    padding-bottom: 20px;
}

footer .company__name {
    font-family: "Anton", sans-serif;
    font-size: .9rem;
    text-transform: uppercase;
    color: var(--warm-white);
    margin-bottom: 20px;
}

.footer__body {
    gap: 20px;
    width: 500px;
}
 
.footer__body p,
.footer__contact p {
    font-family: "Oswald", sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 0.5rem);
    font-weight: 400;
    color: var(--warm-white);
    text-decoration: none;
}

.footer__contact{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 40px;
}

.copyright-description {
    font-family: "Oswald", sans-serif;
    font-size: clamp(0.6rem, 1.2vw, 0.5rem);
    font-weight: 400;
    color: var(--warm-white);
    padding-top: 40px;
    text-transform: uppercase;
}

.copyright-description a {
    font-family: "Anton", sans-serif;
    font-size: clamp(0.7rem, 1.2vw, 0.5rem);
    color: var(--yellow);
    text-transform: uppercase;
    text-decoration: none;
}