
footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;

}

.footer-container {
    background-color: white;
}

.footer01 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.icons {
    display: flex;
    gap: 20px;
}

.footer2 {
    text-align: center;
    background-color: rgb(79, 9, 9);
    padding: 5px 0;
    font-weight: bold;
}

.content {
    height: 100vh;
}

@media (max-width: 480px) {
    .footer01 {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .icons {
        padding: 20px;
    }
}