.site-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-copyright-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    user-select: none;
    cursor: pointer;
    background-color: var(--footer-copyright-container-bg-color);
    border-top: 1px solid var(--footer-copyright-container-top-bd-color);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-optical-sizing: inherit;
}

.footer-copyright-container p,
span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--footer-copyright-container-text-color);
}

#year {
    color: #0100A6;
}

@media (max-width: 768px) {

    .footer-copyright-container p,
    span {
        font-size: 0.9rem;
    }
}