.article {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.article-wrapper {
    width: 1400rem;
}

.floating {
    position: fixed;
    bottom: 100rem; left: 100rem;
    display: flex;
    flex-direction: column;
    gap: 15rem;
    z-index: 100;
}

.floatingBtn {
    width: 90rem;
    height: 90rem;
    color: #fff;
    font-size: 40rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #ffffff28;
    background-color: #000;
}

#toTop {
    cursor: pointer;
    display: none;
}


/*==================================================*/
@media (max-width: 1450px) {
    .article-wrapper {
        width: 100%;
        padding: 0 30px;
    }
}


@media (max-width: 768px) {
    .floating {
        left: unset;
        bottom: 60rem;
        right: 60rem;
    }
}