footer {
    position: relative;
    width: 100%;
    height: 90px;
    background-color: #151B23;
    z-index: 100;
}

.footer-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #9198A1;
    font-size: 13px;
}

.footer-social {
    position:  absolute;
    display: flex;
    /* gap: 30px; */
    top: 50%;
    left: 75%;
    transform: translate(0%, -50%);
    width: 100px;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.footer-icon {
    color: #9198A1;
    font-size: 20px;
    transition: 100ms all;
}

.footer-icon-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0px 10px;
    cursor: pointer;
    text-decoration: none;
}

.footer-icon-link:hover .footer-icon {
    color: white;
}