html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-image: url('../pictures/StockCake-Advanced circuit technology_1728060876.jpg');
    background-size: cover;
    background-position: center;
}

.site {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-left: 0.3rem solid rgb(119, 151, 194);
    border-right: 0.3rem solid rgb(119, 151, 194);
    box-shadow: 0 0 0.5rem 0.5rem rgba(122, 193, 252, 0.5), 
                0 0 0.5rem rgba(89, 140, 235, 0.5) inset;
}

.banner {
    width: 100%;
    color: white;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 10rem;
    box-sizing: border-box;
}

hr {
    width: 100%;
    border: 1px white solid;
    height: .3rem;
    background: rgba(0, 0, 0, 0.8);
    margin: 0;
}

.layout-row {
    display: flex;
    flex-direction: row;
    height: 100vh;
}

.footer {
    background-color: #333;
    height: 40px;
    position: relative;
    width: 100%;
    z-index: 2;
}

.footer p {
    color: white;
    text-align: center;
}

.main-area {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1 1 0;
    background: rgba(255, 255, 255, 0.0);
    padding: 0;
    margin: 0;
}

.main-content {
    flex: 1 1 0;
    padding: 0;
    margin: 0;
    border: none;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
    background: rgba(255, 255, 255, 0.0);
}

.main-window {
    scrollbar-width: none;
    -ms-overflow-style: none;
    border: none;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    flex: 1 1 0;
}

@Media (max-width: 1920px) {
    .site {
        border: none;
    }
}