footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 32px 0;
    background-color: var(--default-background-color);
}

footer a {
    font-weight: 400; /* 1104 수정 */
    color: var(--default-font-color);
    text-decoration: none;
}

footer .wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

footer .btn-area {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width:100%;
}

footer .license-area {
    display: flex;
    flex-direction: column;
    gap:8px;
}

footer .license {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 0.875rem;
    text-align: center;
}

footer .license a:hover,
footer .license a:active {
    color: var(--alpha-70);
}

footer .copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: var(--alpha-10);
    text-align: center;
}


footer .count div {
    margin-top: 10px;
    margin-right: 10px;
}

footer .count div:last-child {
    margin-right: 0;
}

b,
footer .bold {
    display: inline-block;
    font-weight: bold;
}

/* 고정 FAB */

.navigationButtons {
    position: fixed;
    right: 16px;
    bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    z-index: 999991;
}

.navigationButtons .write-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--point-background-color);
    border-radius: 50%;
    box-shadow: 0 10px 8px 0 var(--point-shadow-color-30, rgb(14 122 128 / 30%));
}

.navigationButtons .write-btn:active {
    background-color: #189AA1;
    box-shadow: 0 3px 2px 0 var(--point-shadow-color-30, rgb(14 122 128 / 30%));
}

.navigationButtons .scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--alpha-reverse-90);
    border: 1px solid var(--alpha-10);
    border-radius: 50%;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 5%);
}

.navigationButtons .scroll-btn svg {
    fill: var(--alpha-70);
}

.scroll-btn:active {
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 5%);
}

/* @media only screen and (min-width: 1200px) {
    .navigationButtons {
        display:none;
    }
} */