.footer-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(29, 29, 29);
    height: 150px;
    padding: 30px 50px;
    position: relative;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.footer-icon {
    width: 40px;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 300ms ease;
}

.footer-icon:hover {
    background-color: var(--primary-bg);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    transform: scale(1.2);
}

.footer-contacts {
    display: flex;
    background-color: var(--secondary-bg);
    padding: 10px;
    margin: 30px 0px 30px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    width: 1000px;
    justify-content: space-evenly;
    align-items: center;
    transition: all 300ms ease;
    flex-wrap: wrap;
}

.footer-contacts p {
    color: white;
    transition: all 300ms ease;
}

.footer-contacts:hover {
    transform: scale(1.05);
}

.footer-contacts:hover p {
    text-shadow: 0px 0px 10px white;
}