.footer-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #0e0e0e;
    color: white;
    padding: 15px;
    margin-top: 60px;
    gap: 10px;


    a {
        color: white;
        text-decoration: underline;
        transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
        background-color: none;
        padding: 2px 3px;
    }

    a:hover {
        background-color: #ffd6f3;
        color: black;
        transition: none;
        box-shadow: 0 0 0 5px #ffd6f3;
    }

    p {
        margin: 0;
    }
}

@media screen and (max-width: 800px) {
    a:active {
        background-color: #ffd6f3;
        color: black;
        transition: none;
        box-shadow: 0 0 0 5px #ffd6f3;
    }
}