@font-face {
    font-family: "UIfont";
    src: url("./font/UI.ttf");
}

@font-face {
    font-family: "console";
    src: url("./font/console.ttf");
}


body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #008080;
    background-image: url("./img/bg.png");
    padding: 0;
    margin: 0;

    font-family: "UIfont";
    font-smooth: never;
    -webkit-font-smoothing : none;

    user-select: none;
    -moz-user-select: none;
}

.taskbar {
    position: fixed;
    bottom: 0px;
    height: 56px;
    width: 100%;
    background-image: url(./img/taskbar.png);
    background-repeat: repeat-x;
}

.taskbar .start {
    position: fixed;
    left: 0px;
    height: 56px;
    width: 116px;
    background-image: url(./img/start.png);
}

.taskbar .clock {
    position: fixed;
    right: 0px;
    height: 56px;
    width: 168px;
    background-image: url(./img/clock.png);
}

#clockText {
    font-size: 22px;
    margin: 0;
    position: relative;
    left: 75px;
    top: 19px;
    font-weight: 1;
}

.desktopicon {
    display: block;
}

.desktopicon.translocate {
    background-image: url("./img/translocate.png");
    width: 150px;
    height: 140px;
}

.desktopicon.fo4bingo {
    background-image: url("./img/fo4bingo.png");
    width: 150px;
    height: 140px;
}

.bsod {
    font-size: 20px;
    font-weight: bold;
    font-family: "console";
    background-color: #0000aa;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    overflow: hidden;
}

.bsodBody {
    display: block;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #aaaaaa;
    
    overflow: hidden;
}

.bsod p.title {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
    background-color: #aaaaaa;
    color: #0000aa;
    display: inline-block;
}

.hidden {
    display: none;
}