* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: monospace;
}
body {
    background: whitesmoke;
    min-height: 100vh;
    min-width: 300px;
    margin: 1em;
    overflow-x: hidden;
}
p {
    font-weight: normal;
    color: black;
    font-size: larger;
    text-transform: lowercase
}
.justify {
    text-align: justify;
    margin-bottom: 1rem;
}
img {
    width: 100%;
}
a {
    color: limegreen;
    text-decoration: none;
    font-weight: 600;
}