body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6; /* Light gray background */
    color: #374151; /* Dark gray text */
    }

.section-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    }
        
.section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50%;
    height: 4px;
    background-color: #3b82f6; /* Blue underline */
    border-radius: 9999px;
    }
        /* Smooth scroll for navigation */
html {
    scroll-behavior: smooth;
    }

@media (min-width: 1020px) {
    div .skills{
        grid-column: 1 / -1;
        }

    div .skills h3{
        text-align: center;
        }
    
    div .skills ul{
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
        }
    }