#footer footer {
    padding-left: 5%;
    padding-right: 5%;
    background-color: #28292B;
    bottom: 0px;
    padding: 0.5rem;
    color: #ffffff;
}

.row {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
    margin: 0 5%;
}

.row>div:first-child {
    flex-basis: 100%;
    text-align: center;
}

.row>div:not(:first-child) {
    box-sizing: border-box;
    flex: 1 1 25%;
    max-width: 100%;
    padding: 5px;
}

@media (max-width: 905px) and (min-width: 525px) {
    .row div:not(:first-child) {
        flex: 1 1 50%;
    }

    .row {
        margin: 0 10%;
    }
}

@media (max-width: 524px) {
    .row div:not(:first-child) {
        flex: 0 0 100%;
    }

    .row {
        margin: 0 15%;
    }
}

.row-break {
    flex-basis: 100%;
    height: 0;
}

.no-split {
    white-space: nowrap;
}

footer i {
    color: rgb(181, 254, 154);
}

footer p,
footer a {
    text-decoration: none;
    color: #cec7c7;
    transition: color .2s ease-in-out;
}

footer a:hover {
    color: rgb(0, 225, 82);
}

footer b {
    font-size: 0.8rem;
}

.icons8 {
    vertical-align: middle;
}