/* Import Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Rajdhani:wght@300;400;500;600;700&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&family=Ubuntu:wght@300;400;500;700&display=swap');

@import url('./ui.css');
@import url('./settings.css');
@import url('./gallery.css');

html {
    box-sizing: border-box;
    font-size: 16px;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.pointer-events-all {
    pointer-events: all;
}

.pointer-events-none {
    pointer-events: none;
}

.toast {
    margin-top: 20px !important;
}

html,
body {
    width: 100%;
    height: 100%;
    position: relative;
    font-family: 'Ubuntu';
    overflow: hidden;
    font-size: 18px;
    color: #000000;
}

/* Game Display (Canvas) */
#game-display {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    background-color: #000000;
}

/* Hud Display */
#hud-display {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

#hud-display.visible {
    display: block;
}

#hud-display.hidden {
    display: none;
}

/* Menu Display */
#menu-display {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
    /*background-image: url('../images/bg.png');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;*/
}

#menu-display.visible {
    display: block;
}

#menu-display.hidden {
    display: none;
}

#menu-display-center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
}

#leaderboard-canvas {
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 0, 0, 0.13);
}

#minimap-canvas {
    position: absolute;
    bottom: 10px;
    right: 10px;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 0, 0, 0.13);
}

.menu-container {
    display: grid;
    place-items: center;
    gap: 20px;
    border-radius: 40px;
    padding: 10px;
}
