*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    color: #000;
}

.mainContainer {
    max-width: 800px;
    width: 100%;
    margin: 20px auto;
    padding: 20px 10px 50px;
    border-radius: 24px;
    box-shadow: 5px 5px 25px #000;
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.profile {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.avatar {
    max-width: 150px;
    width: 100%;
    max-height: 150px;
    height: 100%;
    border-radius: 100px;
    overflow: hidden;
}

.avatar__img {
    width: 100%;
}

.infoOfMe {
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 5px 5px 25px #1e1e1e;
    padding: 20px;
    border-radius: 24px;
    color: #000;
}

.name > p,
.job > p,
.myLinks > p {
    font-size: 18px;
}

.myLinks > p > a {
    color: #0084ff;
    text-decoration: underline;
}

.infoOfMeCan {
    width: 100%;
    padding: 20px;
    border-radius: 24px;
    box-shadow: 5px 5px 25px #8a8a8a;
    margin-bottom: 50px;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.infoOfMeCan > p {
    font-size: 18px;
}

.myProjects {
    width: 100%;
    padding: 20px;
    border-radius: 24px;
    box-shadow: 5px 5px 25px #8a8a8a;
}

.myProjects__Title {
    font-size: 22px;
    color: #1e1e1e;
    margin-bottom: 20px;
}

.myProjects__List {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.myProjects__List__Item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.myProjects__List__Item > .desc {
    display: flex;
    color: #000;
    gap: 5px;
}

.myProjects__List__Item > .desc > .circle {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, .3);
    border-radius: 100px;
}

.myProjects__List__Item > .desc > .info {
    color: #1e1e1e;
}