@font-face {
    font-family: 'vcr_osd_mono';
    src: url('/fonts/vcr_osd_mono.woff2') format('woff2'),
         url('/fonts/vcr_osd_mono.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'tewi';
    src: url('/fonts/tewi.woff2') format('woff2'),
         url('/fonts/tewi.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


body {
    background-color: black;
    background-image: url("/bg/emptyofficebgdark.png");
    background-size: cover;
}


.main {
    margin: auto;
    margin-top: 90px;
    background-color: transparent;
    width: 850px;
    height: 800px;
    margin-bottom: 10px;
        box-sizing: border-box;
}


.itcontains {
display: grid;
grid-template-columns: 1fr 2fr;
grid-template-rows: 0.5fr 2fr 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
    
    background-color: transparent;
    width: 850px;
    height: 750px;
    margin: auto;
        box-sizing: border-box;
    transform: translateX(-50px);
}

.decorative {
    grid-area: 1 / 1 / 2 / 2;
    background-color: transparent;
        box-sizing: border-box;

}
.textbox {
    grid-area: 2 / 1 / 3 / 2;
    background-color: #000;
        box-sizing: border-box;
    border: double 3px #f00;
    border-right: none;
        font-family: 'tewi';
    width: 200px;
    height: 400px;
    transform: translateX(80px);
    padding: 20px;
    overflow-y: scroll;
}

.textbox hr {
    width: 130px;
    color: #00f;
}

.shitpiss {
    grid-area: 1 / 2 / 4 / 3;
    background-color: #000;
    height: 750px;
    width: 570px;
    margin: auto;
        box-sizing: border-box;
    border: double 3px #00f;

}
.shitpissframes {
    border: none;
    margin: 10px;
    height: 730px;
    width: 550px;
        box-sizing: border-box;

}
button {
    width: 100px;
    height: 30px;
    background-color: #004;
            box-sizing: border-box;
    border: solid 1px #F00;
    padding: 5px;
    font-size: 14px;
    color: white;
    text-shadow: 0px 1px #000;
    font-family: 'vcr_osd_mono';
    margin-bottom: 5px;
    margin-top: 5px;
    box-shadow: 0px 0px 2px #800;
}
button:hover {
    background-color: #00B;
    border: 3px double #f00;
    box-shadow: 0px 0px 5px #f00;
}
.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 2 / 1 / 3 / 2; }
.div3 { grid-area: 3 / 1 / 4 / 2; }
.div4 { grid-area: 1 / 2 / 4 / 3; } 