.windowSurface
{
    position: absolute;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: rgb(14, 0, 0);
    color: white;
    border: 1px solid rgb(34, 0, 0);
    min-width: 256px;
    max-width: 1920px;
    height: calc(100vh - 200px);
    width: calc(100vw - 200px);
    z-index: 999;
    transition: all 1s ease;
    margin: 100px;
    border-radius: 3px;
    box-shadow: 0px 0px 50px rgb(0, 0, 0);
}

.windowTopBar
{
    position: absolute;
    display: block;
    background-color: black;
    border-bottom: 1px solid rgb(31, 0, 0);
    height: 72px;
    width: 100%;
}

.windowExButton
{
    position: absolute;
    display: block;
    height: 72px;
    width: 72px;
    right: 0px;
    top: 0px;
    color: rgb(255, 0, 0);
    font-family: monospace;
    font-size: 24px;
    text-align: center;
    align-content: center;
    transition: all 1s ease;
    user-select: none;
}

.windowExButton:hover
{
    background-color: rgb(94, 0, 0);
    color: rgb(255, 0, 0);
    transition: all 1s ease;
    user-select: none;
    cursor:pointer;
}

.windowTitle
{
    position: absolute;
    display: block;
    font-family: 'Sofia Sans Extra Condensed';
    font-weight: 300;
    font-size: 48px;
    align-content: center;
    padding-left: 25px;
    color: rgb(204, 204, 204);
    width: 100%;
    height: 100%;
    user-select: none;
}

.windowPane
{
    position: absolute;
    display: flex;
    top: 72px;
    z-index:999;
    padding: 25px;
    font-family: 'Sofia Sans';
    font-size: 18px;
    line-height: 200%;
}