.about {
    display: flex;
    flex-direction: column;
    background-color: rgb(191, 191, 191);
    border-radius: 50px;
    width: 70%;
    margin: 0 auto;
    padding: 2em;
    margin-bottom: 15%;
}

.about p {
    text-align: center; 
    font-size: 1.2em;
    padding: 0 10%;
}

.about a {
    text-decoration: none;
}

#my_image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.github_stats {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
    text-align: center;
}

#top_languages {
    margin-top: 20px;
    width: 100%;
}

#contributions {
    width: 100%;
}

@media (max-width: 420px) {
    #my_image {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 1300px) {
    .github_stats {
        flex-direction: column;
    }
    #top_languages {
        width: 60%;
        margin-top: 0;
    }
    #contributions {
        margin-top: 0;
    }
}
