.base-container {
    max-width: 960px;
}

.base-grid {
    padding-left: 6em;
    padding-right: 6em;
    padding-top: 8em;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 30% 70%;
    background-image: linear-gradient(#171517, #101010, #000000);
    color: whitesmoke;
    justify-items: center;
}

.header-grid {
    display: grid;
    grid-row: 0;
    grid-column: 0;
    max-width: 960px;
    min-width: 960px;
    grid-template-columns: 45% 55%;
    grid-template-rows: 100%;
    justify-items: center;
}

.title-container {
    grid-row: 0;
    grid-column: 2;
    font-size: min(max(1rem, 4vw), 16px);
    color: whitesmoke;
    opacity: 0.8;
    padding-left: 0.5em;
}

.logo-container {
    grid-row: 0;
    grid-column: 0;
}

.logo-image {
    width: 30%;
    /*max-height: inherit;*/
    width: 10em;
    object-fit: contain;
}

.stack-grid {
    display: grid;
    grid-template-columns: 30% 30%;
    grid-template-rows: 30% 30% 30%;
    row-gap: .75em;
}

.stack-icon-img-detail {
    width: auto;
    display: block;
    margin: auto;
    height: 100%;
}

.content-grid {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 100%;
    max-width: 960px;
}

.content-container {
    grid-row: 0 / 1;
    grid-column: 0 / 1;
}
