.links.section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.links h1 {
    color: #8a2be2;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background-color: rgba(75, 0, 130, 0.2);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 120px;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.social-link i {
    font-size: 2em;
    margin-bottom: 10px;
}

.social-link span {
    font-size: 0.9em;
}

/* Specific colors for each social media */
.social-link.linkedin:hover { background-color: #0077B5; }
.social-link.twitter:hover { background-color: #1DA1F2; }
.social-link.youtube:hover { background-color: #FF0000; }
.social-link.instagram:hover { background-color: #E4405F; }
.social-link.facebook:hover { background-color: #1877F2; }
.social-link.tumblr:hover { background-color: #36465D; }

@media (max-width: 600px) {
    .social-link {
        width: calc(50% - 20px);
    }
}