body {
    display:block;
    margin-left: auto;
    margin-right: auto;
    width:90%;
    background-color: rgba(210, 180, 140, 0.7);
    padding-bottom: 15%;
}

div#main {
    display: grid;
    grid-template-columns: reapeat(2, 50%);
}

h1 {
    background-color: rgba(128, 0, 0, 0.8);
    text-align: center;
    color: white;
}

img {
    grid-column: 1;
    border-style:solid;
    border-color: rgba(128, 0, 0, 0.8);
    max-width: 50%;
    max-height:50%;
    object-fit: fill;
    float: left;
}

h2 {
    text-align: center;
    grid-column: 2;
    max-width: 50%;
    max-height: 50%;
}

ol {
    text-align: center;
    grid-column: 2;    
    max-width: 50%;
    max-height: 50%;
    font-size: x-large;
}

footer {
    height:30px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    background-color: rgba(128, 0, 0, 0.4);
    font-size: large;
    font-style: italic;
}