* { 
    background-color: black; 
    color: white; 
    align-items: center;
    justify-content: center; 
    text-align: center; 
    font-family: monospace; 
    overflow: hidden; 
}
html, body { margin: 0; height: 100%; }
h1 { font-size: 3rem; }
p { font-size: 2rem; }
i { color: lightgray; font-size: 1.5rem; }
a { text-decoration: none; color: gray; }
a:hover { color: white; }
/* a i { color: inherit; } */
a i:hover { color: white; }
.page-title { font-size: xx-large; }
.page-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.page-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    align-content: center;
    border-bottom: solid gray;
}
.game-link-prompt {
    padding-top: 15vh;
    align-content: center;
}
.page-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    align-content: center;
    /* border-top: solid gray; */
}
.page-content { 
    display: flex;
    width: 100%; 
    height: 100%;
    padding-bottom:10vh;
    /* background-color: green; */
}

.game-link-container {
    display: flex;
    flex-direction: column;
    margin: 10px;
}
.game-link {
    border: solid gray;
    max-height: 400px;
    max-width: 400px;
}
.game-link:hover {
    border-color: white;
}
.game-link img {
    max-width: 90vw;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ad-container {
    margin: 10px;
    height: 100%;
    display: flex;
    /* border: solid yellow; */
}
.ad-container img {
    border: solid gray;
}
.ad-container img:hover {
    border-color: #1d9bf0;
     /* white; */
}
.ad-container-tall {
    min-width: 120px;
    /* min-height: 600px; */
    /* background-color: blue; */
}
.ad-container-wide {
    /* min-width: 728px; */
    /* max-width: 100vw; */
    min-height: 90px;
    grid-row-start: 3;
    grid-column-start: 2;
    grid-column-end: 3;
    /* background-color: red; */
}
.ad-container-wide img {
    align-self: center;
    max-width: 90vw;
}
.game-content {
    border: 1px solid gray; 
    width: 80%; 
    height: 80%;
}
/* mobile */
@media (max-width: 899px) {
    h1 { font-size: 1.5rem; }
    p { font-size: 1rem; }
    i { font-size: 1rem; }
    .page-title { font-size: x-large; }
    /* .page-container {
        height: 100%;
        display: grid;
        grid-template-columns: 0 minmax(max-content, 100vw) 0;
        grid-template-rows: auto minmax(max-content, 1fr) auto;
    } */
    .page-content {
        flex-direction: column;
    }
    .ad-container-tall {
        height: 0px;
        width: 0px;
        border: none;
    }
}