#footer-container {
    display: flex;                /* puts them in a row */
    justify-content: center;      /* centers horizontally */
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    background-color: #000035;
    color: white;
    padding: 2.5% 10% 2.5% 10%;
    margin: 0;
}

.footer-item {
    flex: 30%; /* Each takes up equal space */
    box-sizing: border-box; /* Ensures padding is included in width */
    padding: 0 5px; /* Space between the boxes */
}

#footer-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ff4b4b;
}

footer {
    background-color: #000035;
    color: white;
    text-align: center;
}

@media (max-width: 1000px)  {
    #footer-container {
        display: flex;                /* puts them in a row */
        flex-direction: column; 
        align-items: center;
        
    }
    #footer-title {
       text-align: center;
    }
    .c {
        text-align: center;
    }
}