footer {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    gap: 20px;
}

.message-container {
    background-color: white;
    width: fit-content;
    align-self: center;
    padding: 10px 30px;
    border-radius: 1rem;
}

.social-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(15px, 3%, 50px);
}

.social-list > li {
    width: clamp(75px, 10%, 100px);
    transition: transform 0.2s ease-in-out;
}

.social-list > li:hover{
    transform: translateY(-10%);
}

.social-list > li > a {
    line-height: 0;
}

.social-list > li > a > img {
    width: 100%;
}

.license-container {
    background-color: white;
    width: fit-content;
    align-self: center;
    padding: 5px 15px;
    border-radius: 1rem;
    color: var(--grey-1);
    font-size: 0.9rem;
}