/* The style of footer for copyright line */
.FooterCopyrightLine {
    display: block;
    
    border-top: 1px solid rgb(237, 237, 237);

    color: rgba(127, 127, 127);
    font-size: var(--font-flaceholder);
    text-align: right;
    text-transform: uppercase;

    width: 100%;

    padding: var(--size-04);
}

@media screen and (max-width: 900px){
    .FooterCopyrightLine {
        text-align: center;
    }
}

    .FooterCopyrightLine > span {
        color: rgb(157, 217, 97);
    }