.link-scroll-up {
    display: block;
    width: 96px;

    .icon {
        @apply border-black;

        display: flex;
        align-items: center;
        justify-content: center;
        width: 96px;
        height: 96px;
        border: 2px solid;
        font-size: 38px;
        transition: color 250ms;
    }

    .text {
        display: block;
        width: 100%;
        margin-top: 8px;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        transition: color 250ms;
    }

    &:hover {
        .text,
        .icon {
            @apply text-red;
        }
    }
}
