.footer-holder {
    margin-top: 5rem;
    padding-bottom: 5rem;
    width: 100%;
}

.footer {
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: center;
    padding: 1rem;
    width: 100%;
    background-color: var(--pr);
    gap: 1rem;
}

.footer-links a {
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
}

@media screen and (max-width: 240px) {
    .footer-links a {
        font-size: 1rem;
    }
}