* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0a1a2a;
    font-family: Arial, sans-serif
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh
}

.infos {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 10;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    font-size: 13px;
    color: #000;
    cursor: pointer
}

.hint {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    background: rgb(0 0 0 / .8);
    padding: 8px;
    border-radius: 8px;
    opacity: .85;
    font-size: 13px;
    color: #fff
}

.hint a {
    color: #ddc2b5;
    text-decoration: none
}

.copy {
    position: fixed;
    top: 20px;
    left: 20px;
    color: #000;
    background: rgb(255 255 255 / .9);
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 100
}

.loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 4px 20px rgb(0 0 0 / .15)
}

::-webkit-scrollbar {
    display: none
}