.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

}

.footer-p {
    font-size: 15px;
    font-weight: 600;
    color: #00000094;
}

.footer-data {
    display: flex;
    align-items: center;
}

.footer-data a {
    font-size: 14px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.mr-2 {
    margin-right: 8px;
}

@media only screen and (max-width:920px) {
    .footer-data {
        flex-direction: column;
    }

    .mr-2 {
        margin-right: 8px;
        margin-bottom: 8px;
    }
}

@media only screen and (max-width:620px) {
    .footer-p {
        font-size: 13px;
    }

    .footer-data a {
        font-size: 12px;
    }

}