body {
    background-color: #CAE0BC;
    color: rgb(0, 0, 0);
    text-align: center;
    font-family: 'Almarai', sans-serif;
}

.profile {
    padding: 0px;
    border-radius: 10px;
    display: inline-block;
}

.profile-img {
    width: 120px;
}

.img-spacing {
    width: 150px;
    padding: 5px;  /* مسافة داخلية للصورة */
    margin: 0px;   /* مسافة خارجية بين الصور */
}

h1 {
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
}

.username {
    font-size: 18px;
    opacity: 0.8;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #057d35;
    text-decoration: none;
    padding: 12px;
    margin: 10px auto;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    width: 80%;
    max-width: 400px;
    transition: 0.3s;
}

.link i {
    margin-right: 10px;
}

.link:hover {
    background: #057d35;
    color: white;
    transform: scale(1.05);
}

.footer {
    font-size: 14px;
    opacity: 0.8;
}

.footer a {
    color: rgb(0, 0, 0);
    text-decoration: underline;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 5px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn:hover {
    transform: scale(1.1);
}

/* ألوان الأزرار */
.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.instagram { background: #c13584; }
.linkedin { background: #0077b5; }
.youtube { background: #ff0000; }
.globe { background: #057d35; }

.footer {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 20px;
}