h1 { 
    font-family: Arial;
    font-size: 1.3em;
    @media screen and (width <= 900px) { padding: 1em; }
}
body {
    padding: 7em;
    margin-left: auto;
    margin-right: auto;
    @media screen and (width <= 900px) { padding: 1em; }
}
main {
    display: flex;
    flex-direction: row;
    font-family: Arial;
    div {
        display: flex;
        flex-direction: column;
        p {
            margin: 0px;
            margin-bottom: 0.8em;
            text-justify: auto;
            &:last-child {
                margin-bottom: 0px;
            }
        }
    }
    figure {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 0px;
        margin-bottom: 0px;
        img {
            border: solid black 3px;
            width: 200px;
        }
    }
    @media screen and (width <= 900px) {
        flex-direction: column;
        figure {
            align-items: center;
            margin-top: 1em;
            margin-bottom: 1em;
        }
    }
}
footer {
    display: flex;
    justify-content: end;
    figcaption { display: none; }
    img { width: 50px; }
}
