html, body {
    background-color: #000;    
    padding: 0;
    margin: 0;
    height: 100%;
}

body {
    display: grid;
    grid-template-columns: auto 800px auto;
    grid-template-rows: auto 500px auto;
}

img {
    margin: 0;
    padding: 0;
}

#feature {
    display: grid;
    width: 800px;
    height: 500px;
    background-image: url("feature.png");
    background-repeat: no-repeat;
    grid-row: 2;
    grid-column: 2;
    align-items: bottom;
    
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 1fr auto;
}

#counter {
    color: #fff;
    grid-column: 2;
    grid-row: 2;
    /*background-color: #fff8;*/
}

