.fa {
    padding: 5px;
    font-size: 30px;
    width: 40px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
}

.fa-facebook {
    background: #3B5998;
    color: white;
}

.fa-twitter {
    background: #55ACEE;
    color: white;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
    background: #3B5998;
    color: white;
}

.fa-twitter {
    background: #55ACEE;
    color: white;
}

.fa-google {
    background: #dd4b39;
    color: white;
}

.fa-linkedin {
    background: #007bb5;
    color: white;
}

.fa-youtube {
    background: #bb0000;
    color: white;
}
.fa-instagram {
    background: #125688;
    color: white;
}
.fa-snapchat-ghost {
    background: #fffc00;
    color: white;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.box {
    border-radius: 1rem;
    border: 1px solid var(--main-color);
    width: 100%;
    padding-top: 100%; /* ارتفاع مساوي للعرض */
    position: relative;
    cursor: pointer;
    transition: all .5s ease-in-out;
    box-shadow: 0 15px 45px -9px rgb(0 0 0 / 20%);
    text-align: center;
    box-sizing: border-box;
}

.box > * {
    position: absolute;
    top: 15px; /* يساوي padding داخل الصندوق */
    left: 15px;
    right: 15px;
    bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
