.btn-game-blue {
    background-image: url(assets/PNG/Blue/Double/button_rectangle_depth_gloss.png);
    background-size: 100% 100%;
    color: white;
    margin: 5px;
    min-height: 40px;
    align-content: center;
    font-family: Planes ValMore;
}

body {
    margin: 0;
    overflow: hidden;
    cursor: url('assets/PNG/Outline/Default/pointer_scifi_b.png'), auto;
}
canvas {
    display: block;
    background-image: url('assets/1 Tiles/FieldsTile_38.png'); /* Sky blue */
    background-repeat: repeat;
    height: 100vh;
}
@font-face {
    font-family: "Planes ValMore";
    src: url('assets/Font/Planes_ValMore.ttf') format("truetype");
}
.canvas-input {
    position: fixed;
    bottom: 10px;
    left: 22px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 7px;
    border: 1px solid;
    width: 580px;
    padding-left: 5px;
    padding-right: 5px;
    font-family: Arial, Helvetica, sans-serif;
    display: block; /* Initially hidden until we need it */
    font-size: 16px;
}
.canvas-input:focus {
    background-color: aliceblue;
    color: black;
}

.chat-msg {
    border: 1px solid black;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
    margin: 2px;
}

.chat-msg:hover {
    background: rgb(0, 0, 0, 0.2);
}

.chat-area {
    border-radius: 7px;
    border: 1px solid black;
    height: auto;
    position: fixed;
    bottom: 5px;
    left:15px;
    width: 595px;
    height: 250px;
}

.chat {
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    bottom: 45px;
    left: 22px;
    border-radius: 7px;
    width: 580px;
    border: 1px solid;
    height: 200px;
    padding: 5px;
    font-family: Arial, Helvetica, sans-serif;
    display: block; /* Initially hidden until we need it */
    font-size: 16px;
    float: left;
    overflow-y: scroll;
}

.inventory {
    border: 1px solid black;
    background: rgba(255, 255, 255, 0.2);
    width: 1000px;
    border-radius: 7px;
    height: 250px;
    position: fixed;
    bottom: 5px;
    left: 700px;
}

.bottom-panels {
    display: inline;
}

#count {
    position: fixed;
    top: 50px;
    left: 50px;
    font-family: Planes ValMore;
}
#welcome_msg {
    position: fixed;
    top: 20px;
    left: 50px;
    font-family: Planes ValMore;
}

#main-menu {
    font-family: Planes ValMore;
    background-color: aliceblue;
    border: 2px solid black;
    padding: 0px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    align-items: center;
    height: 100vh;
}
.card {
    z-index: 100;
    padding: 35px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#main-menu .btn {
    margin-top: 5px;
    
}