/*
 * Copyright © 2025 PaperCut Software IP Pty. Ltd.
 */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    min-height: 272px;
    min-width: 480px;
}

body {
    font-family: 'Courier New', Courier, monospace !important;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    overflow: hidden;
    position: relative;
    color: #444444;
    background-color: black;
}

img{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
}

#frame {
    width: 100%;
    height: 100%;
}
#dinogame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.bg {
    position: absolute;
    z-index: -1;

    top: 0;
}

.ground {
    position: absolute;
    z-index: -1;

    bottom: 0;
}
#dino {
    position: absolute;
    bottom: 0;
    left: 10%;
}
.slime {
    position: absolute;
    bottom: 0;
}

#scoreboard {
    position: absolute;
    z-index: 1;
    display: flex;

    right: 10px;
    top: 10px;

    margin: 5px;
    padding: 15px;
    min-width: 125px;

    background: black;
    opacity: 0.6;
}
#scoreboard * {
    font-weight: bold;
    font-size: 32px;
    color: white;
    text-align: center;
}
#hilabel, #hiscore {
    color: grey
}
#hiscore {
    margin: 0 5px;
}

#titleCard {
    position: absolute;
    width: 100%;
    height: 100%;
    display: table;

}

#titleCardInner {
    vertical-align: middle;
    display: table-cell;
    text-align: center;
}
#titleCardInner span {
    text-align: center;
}

.hidden {
    display: none !important;
}