body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.resume-container {
    width: 80%;
    min-width: 500px;
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.resume-header {
    text-align: center;
}

.resume-header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #333;
}

.resume-header p {
    margin: 5px 0;
}

.resume-header .location, .resume-header .email {
    font-size: 1.2em;
}

.resume-header .socials a {
    color: #007bff;
    text-decoration: none;
    margin: 0 5px;
}

.resume-header .socials a:hover {
    text-decoration: underline;
    font-weight: bold;
}

section {
    margin: 20px 0;
}

section h2 {
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
    font-size: 1.5em;
}

section p{
    margin: 5px 0;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 5px 0;
}

.activities ul a{
    color: #007bff;
    text-decoration: none;
}

.activities ul a:hover{
    text-decoration: underline;
    font-weight: bold;
}

@media (max-width: 600px){
    .resume-container{
        text-align: center;
    }

    .language ul{
        display: grid;
        grid-template-columns: repeat(2,200px);
        grid-template-rows: repeat(2,200px);
        row-gap:  10px;
        column-gap: 10px;
        align-content: center;
        justify-content: center;
    }

    .language ul li{
        padding:40px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lang:nth-child(1){
        font-weight: bold;
        font-size: 30px;
        background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),url('images/python.png');
        background-size: contain;
        background-position: center center;
    }

    .lang:nth-child(2){
        font-weight: bold;
        font-size: 30px;
        background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),url('images/c.png');
        background-size: contain;
        background-position: center center;
    }

    .lang:nth-child(3){
        font-weight: bold;
        font-size: 30px;
        background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),url('images/java.png');
        background-size: contain;
        background-position: center center;
    }

    .lang:nth-child(4){
        font-weight: bold;
        font-size: 30px;
        background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),url('images/js.png');
        background-size: contain;
        background-position: center center;
    }
}