.footer{
    padding: 22px;
    background: var(--second-bg-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    text-align: center;

}

.copyright p{
    font-size: 15px;
    font-weight: 400;
    color: var(--other-color) ;
    text-align: center;
}

.scroll-top i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 27px;
    
}
.scroll-top{
    transition: all 0.5s ease;
}

.scroll-top:hover {
    transition: all 0.5s ease;
    transform: scale(1.2);
}


