.footer {
    position: relative;
    width: 100%;
    height: 110px;
    padding: 20px 0;
    background: white;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.footer > .link {
    position: relative;
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer > .copyright {
    position: relative;
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.footer > .link > span {
    font-size: 14px;
    color: #333;
}

.footer > .copyright > span {
    font-size: 14px;
    color: #666;
}