footer {
    background: var(--primary-color-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    padding-bottom: 0;
    color: white;
    
}

.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark-color);
    text-align: center;
    padding: 10px;
    width: 100%;
    margin-top: 10px;
}

.bottom-footer img {
    height: 250px;
}

.left-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    font-size: 1.5rem;
}

.top-footer {
   text-align: center;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 20px;
   font-size: 1.5rem;
   max-width: 1000px;
}

@media (max-width: 950px) {
    .bottom-footer {
        flex-direction: column;
        gap: 20px;
    }

    .bottom-footer img {
        height: 150px;
    }

    .top-footer {
        text-align: center;
        align-items: center;
        padding: 10px;
        font-size: 1.2rem;
    }

    .left-footer {
        font-size: 1.2rem;
        text-align: center;
        align-items: center;
    }

}