html {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    background-color: rgb(252, 252, 252);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: 900px;

    box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.19);

    padding: 30px;

    background-color: white;

    border-radius: 4px;

    > img {
        max-width: 90%;
    }

    > div.image-wrap {
        max-width: 70%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;

        padding: 20px;
        margin: 10px;

        border-radius: 6px;
        box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.19);

        > img {
            max-width: 100%;
        }

        > div {
            max-width: 90%;
            text-align: center;
        }
    }

    .me {
        width: 120px;
    }
}
