﻿#window {
    margin: auto;
    width: 70dvw;
    border-inline: 2px white solid;
    background: #282828;
    height: 100dvh;
    padding-inline: 1em;
    display: flex;
    flex-direction: column;
    text-align: center;
}

#banner-container {
    position: relative;
    /* anchor for the pseudo-element */
    width: 65dvw;
    height: 10em;
    margin-inline: auto;
    margin-top: 1em;
    overflow: hidden;
    border-radius: 5px;
    border: 1px white solid;
    box-shadow: 0px 0px 10px 5px rgba(255, 255, 255, 0.3);
    #banner-image {
        width: 100%;
        object-fit: cover;
        align-self: center;
        height: inherit;
        filter: saturate(12.5%);
    }
}

#quote {
    margin-bottom: 1em;
    font-size: 14px;
}

#banner-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.25) 2px,
            rgba(156, 165, 157, 0.25) 2px,
            rgba(156, 165, 157, 0.25) 4px);
    background-blend-mode: multiply;
    pointer-events: none;
}

#menu {
    width: 100%;
    border-block: 1px white solid;

    ul {
        display: flex;
        padding-left: 0;

        li {
            margin: auto;
            list-style: none;
        }
    }
}

#container {
    height: 56%;
    #sidebar {
        border-right: 1px solid white;
    }
    #content {
        text-align: left;
        padding: 1em;
    }
}