.profile {
    display: flex;
    /* articles side by side */
    align-items: flex-start;
    /* align tops of articles */
    gap: 20px;
    /* space between articles */
}

.post {
    display: flex;
    flex-direction: column;
    /* stack content vertically inside article */
    align-items: center;
    /* optional: center image and text */
    text-align: center;
    /* optional: center text */
    gap: 10px;
    /* space between heading, image, and paragraph */
}

.post .me {
    width: 200px;
    height: auto;
    border-radius: 10px;
    border: 3px solid black;
}

.post h1 {
    margin: 0;
    text-decoration: underline;
}

h1 {
    text-decoration: underline;
}





/* this bit is for mobiles */
@media (max-width: 600px) {
    .profile {
        flex-direction: column;
        /* stack image and article on small screens */
    }

    .profile .me {
        width: 100%;
        /* full width on mobile */
    }

    h1 {
        text-decoration: underline;
    }
}