/* @font-face {
    font-family: 'myFont';
    src: url('font.ttf');
} */

.hidden {
    display: none;
    position: absolute;
    top: 0;
}

.virtual-keyboard {
    position: fixed;
    bottom: 60px;
    right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.transparent {
    color: #89ad452a;
}

.keyboard-container {
    display: flex;
}

.arrow {
    width: 5rem;
    height: 5rem;
    background-color: #8ca5b627;
    color: #fff;
    text-align: center;
    line-height: 50px;
    margin: 5px;
    cursor: pointer;
}

body {
    /* background-image: url("/game/sprite/laser.png"); */
    background-color: black;
    margin: 0%;
    margin-top: 0%;
    color: aliceblue;
}

h2 {
    text-align: center
}

.label-input-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}


.canva-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-background {
    background-color: rgba(40, 40, 48, 0.50);
    background-image: url("background.png");
    background-position: center center;
    background-repeat: no-repeat;
}



.error {
    color: rgb(175, 0, 0)
}



.popup-content {
    text-align: center;
}

@keyframes blinkAnimation {
    from {
        background-color: #ffffff;
    }

    to {
        background-color: #ffc23d;
    }
}

button {
    padding: 8px 16px;
    background-color: #49483e;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}