footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: #131C43;
    box-shadow: 1px 1px 5px #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer-container {
    max-width: 1300px;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-container p {
    color: #aaa;
    text-align: center;
}

.footer-container a {
    text-decoration: none;
    color: #aaa;
}

.fa-tiktok,
.fa-square-instagram {
    color: #aaa;
    font-size: 1.5rem;
    margin: 10px;
}

@media screen and (max-width:768px){
    footer {
        padding: 10px;
    }
    .footer-container {
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-container p, a {
       font-size: 16px;
    }
}