body {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-btn:hover {
    background-color: #4a7c59;
    transform: translateY(-2px);
}

.social-btn svg {
    flex-shrink: 0;
}

.codewars {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

/* mobile responsiveness */
@media (max-width: 600px) {
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    .codewars img{
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}