body {
    padding: 20px 50px;
    background-color: azure;
}

#main-title {
    text-align: center;
}

#social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.title {
    display: flex;
    justify-content: center;
}

.title h1::after {

    /* Just to make it work */
    content: "";
    display: block;

    width:60px;
    height:5px;
    background-color: aquamarine;

    margin: 0 auto;

}

#skills {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.skills-card {
    border: 1px aquamarine solid;
    border-radius: 20px;
    padding: 0 20px;
    background-color: rgb(255, 255, 255);
}