﻿.footer-container {
    display: flex;

    /* bottom: 0; */
    margin-top: 80px;

    width: 100%;
    height: 60px;

    background-color: var(--dark-blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 0.3fr));
    gap: 20px;
    justify-content: center;

    margin-top: 40px;
    margin-left: 15%;
    margin-right: 15%;
    margin-bottom: 40px;
}



