#footer {
    height: 75px;
    background-color: #1b1c21;
    color: white;
}

.footer-row {
    display:flex;
    justify-content: space-around;
    height: 100%; /*it takes all the footer space*/
    align-items: center;
    width: calc(100% - var(--scrollbar-width));
    
}

.footer-row a{
    color: #f2f2f2;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
}

.footer-row a:hover {
    /* background-color: #ddd;
    color: black; */
    /* opacity: 0.7; */
    color: #50DED0;
}


