/* style.css */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black; /* Set background color to black */
    overflow: hidden;  /* Add overflow property */

}

canvas {
    background-image: url('https://elsandor.com/assets/img/logo.png');
    background-repeat: no-repeat;
    background-size: 400px; /* Set background image width to 400px */
    background-position: center; /* Center the background image */
}

canvas, body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    display: block;
    align-items: center;
    justify-content: center;
}

.asset-img {
    display: none;
}






