:root{
    --bg-color: #ffffff;
}


.footer-container{
    background: rgb(111,98,252);
    background: linear-gradient(180deg, rgba(111,98,252,1) 0%, rgba(79,55,159,1) 100%);
    color: white;
    padding: 40px 0 40px 0;
}

.section-title{
    font-size: 24px;
    margin-top: 20px;
}

.footer-section{
    display: flex;
    flex-direction: column;
}

.footer-links{
    color: white !important; 
    text-decoration: none !important;
    padding-top: 5px !important;
}

.footer-links:hover{
    cursor: pointer !important;
    text-decoration: underline !important;
    color: white !important;
}

.extra-info{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.copy-write, .back-to-top{
    font-size: 12px;
    font-style: italic;
}
@media only screen and (max-width: 760px){

    .section-title{
        font-size: 14px;
    }
    
    .footer-links{
        font-size: 12px;
    }
}

