.userInfo {
    max-width: 900px;
    display: flex;
    justify-content: space-between;

    margin: 40px auto;
}

.names h1 {
    text-transform: uppercase;
    font-size: 2.8rem;
}
.names h2 {
    font-weight: 400;
    text-transform: lowercase;
    font-size: 1.25rem;
}

.stats p {
    width: 100%;
    text-align: right;
    font-size: 1.15rem;
}
.stats p:last-child{
    margin-top: 5px;
}

hr {
    max-width: 900px;
    margin: 60px auto;
}

.mainContent {
    margin: 0 auto;
    max-width: 900px;
}

.articles {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.article {
    position: relative;
    flex-grow: 1;
    width: 420px;
}

.art:first-child{
    width: 900px;
}

.article img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.article .content {
    margin-top: 20px;
    padding: 0 10px;
    box-sizing: border-box;
    width: 100%;

    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.article .content h2 {
    font-weight: 400;
    font-size: 16px;
}

.statArticle {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.statArticle * {
    font-size: 12px;
}

.edit {
    display: flex;
}

.edit .contentImg {
    flex-grow: 1;
    padding: 10px 20px;
    background-color: white;

    align-items: center;
    justify-content: center;
    display: flex;
    gap: 10px;
}

.edit .contentImg:last-child {
    background-color: #FFF3F3;
}

.edit img {
    height: 25px;
    width: 25px;
}

.edit p {
    height: fit-content;
    font-size: 12px;
}

@media (max-width: 500px) {
    .names h1 {
        font-size: 2rem;
    }
    .stats p {
        font-size: 0.9rem;
    }
}