body {
    background-color: #000000;
    user-select: none;
}
.fullscreen {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fullscreen canvas {
    height: 100%; 
    width: 100%; 
    object-fit: contain;
    image-rendering: crisp-edges;
}
.StartButton {
    position: absolute;
    width : 250px;
    height : 80px;
    border-radius: 10px;
    border-color: white;
    border-style: solid;
    font-family: Arial;
    font-size: 30px;
    font-weight: bold;
    -webkit-box-shadow:0px 0px 105px 50px rgba(255,255,255,0.37);
    -moz-box-shadow: 0px 0px 105px 50px rgba(255,255,255,0.37);
    box-shadow: 0px 0px 105px 50px rgba(255,255,255,0.37);

    cursor: pointer;
}
.ScoreText {
    position: absolute;
    font-size: 40px;
    font-family: "Pixelify Sans", sans-serif;
    left: 10px;
    top: 25px;
    color: white;
    filter: drop-shadow(2px 2px 4px #000);
}
.TopBar {
    padding-top: 0;
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 50px;
    background-color: rgb(22, 22, 22);

    font-family: Arial;
    color: white;
    font-weight: bold;
    font-size: 10px;
}
.TopBarImg {
    image-rendering: crisp-edges;
    position: absolute;
    left: 10px;
}
.EmptyDragArea {
    position: absolute;
    top: 0;
    right: 65px;
    left: auto;
    width: 100%;
    height: 100%;
    -webkit-app-region: drag;
}
.TopBar h1{
    margin-left: 15px;
    margin-top: 15px;

    text-shadow: 0 0 10px #ffffff36, 0 0 10px #ffffff2f;
}
.CloseButton{
    position: absolute;
    top: 8px;
    right: 15px;
    width: 35px;
    height: 35px;
    background-color: red;
    border-radius: 8px;
    border-style: none;

    cursor: pointer;
}
.CloseButton:hover{
    border-style: solid;
    border-width: thick;
    border-color: #ffc0c0;
}
.MaximizeButton{
    position: absolute;
    top: 8px;
    right: 65px;
    width: 35px;
    height: 35px;
    background-color: rgb(130, 159, 255);
    border-radius: 8px;
    border-style: none;

    cursor: pointer;
}
.MaximizeButton:hover{
    border-style: solid;
    border-width: thick;
    border-color: #c0e8ff;
}
.MinimizeButton{
    position: absolute;
    top: 8px;
    right: 115px;
    width: 35px;
    height: 35px;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    border-style: none;

    cursor: pointer;
}
.MinimizeButton:hover{
    border-style: solid;
    border-width: thick;
    border-color: #c0e8ff;
}