* {
    margin: 0;
    padding: 0;

}

.footer p {
    margin-bottom: 0 !important;
}

.footer {

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: #022C43;

    padding: 20px 0 10px 0;
    width: 100%;
    height: 100px;
    font-size: 20px;
    color: white;


}

.social-media-icons i {
    font-size: 20px;
    padding: 4px;
    cursor: pointer;
}

.social-media-icons a {
    color: #fff;
}

@media screen and (max-width:700px) {

    .footer {
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: fit-content;
    }

    .copyrights {
        padding-top: 20px;
    }

    .social-media-icons {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}