body {
    height: 100%;
    width: 100%;
    margin: 0;

    user-select: none;
}

.canvas-container {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
    background-image: url(../img/textures/backgrounds/stone-wall.jpg);
    background-size: contain;
    pointer-events: none;
}

#weapons {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    text-align: right;
    display: none;
    border-collapse: collapse;
    background-color: white;
    border: none;
    color: black;
    font-size: 20px
}

tr.active {
    background-color: #3366aa;
    color: white;
}

td {
    padding: 20px 30px;
}

td:first-child {
    text-align: left;
}
td:last-child {
    text-align: right;
}


#start {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    text-align: center;
    font-family: sans-serif;
    padding-top: 100px;
}

#start > div {
    margin: 0 auto;
    width: 250px;
    background-color: white;
    padding: 30px;
    border-radius: 5px;
}

#start button {
    background-color: #3366aa;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 20px;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
}

h1 {
    margin-top: 0;
}