footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #717171;
    margin-top: 50px;
    margin-left: 30px;
    margin-right: 30px;
}

.footer-links-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links{
    text-decoration: none;
    color: black;
    font-weight: 400;
    font-size: 18px;
    transition: transform 0.2s ease;
}

.footer-links:hover{
    transform: scale(1.05);
}