body {
    background-color: #29292a;
    color: rgb(233, 232, 232);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    display: grid;
    grid-template-columns: 20% 60% 20%;
    grid-template-rows: 1fr;
}

.context {
    grid-column: 2/3;
    grid-row: 1/2;
    padding: 20px;
    background-color: #29292a;
    color: rgb(233, 232, 232);
}

h1 {
    background-color: #29292a;
    color: rgb(233, 232, 232);
    width: 100%;
    text-align: center;
}

p {
    line-height: 2;
}

img {
    margin: 5px 0;
}