body {
    display: flex;
    flex-direction: column;
    background-image: url("../images/background.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

main {
    height: 100%;
    width: 100%;
    padding: 10px;
    display: grid;
    grid-template: repeat(6, 100px) / repeat(6, 80px);
    overflow: hidden;
}
#window-container{
    position: absolute;
    height: 100%;
    width: 100%;
    top:0;
    left:0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

footer {
    height: var(--panel-height);
    width: 100%;
    background-color: #215bce;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    justify-items: center;
    align-content: center;
}

footer * {
    user-select: none;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent 4px),
                linear-gradient(to top, rgba(0,0,0,0.3), transparent 4px);
    pointer-events: none;
    z-index: 1;
}
