@font-face {
    font-family: "Lucky";
    src: url("assets/font/Luckiest_Guy/LuckiestGuy-Regular.ttf");
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;      
    touch-action: none;    
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url("assets/images/deepSee/vecteezy_ocean-background_273915.png");
    background-size: cover;     
    background-position: center;
    height: 100dvh; 
}

.canvas-container {
    width: 100%;             
    max-width: 800px;        
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}


canvas {
    width: 100%;    
    height: 100%; 
    display: block;
    border-radius: 30px;
    object-fit: cover;
    touch-action: manipulation; 
}

#rotateOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    font-family: "Lucky", sans-serif;
    font-size: 28px;
    display: flex;
    justify-content: center;   
    align-items: center;       
    text-align: center;        
    word-wrap: break-word;           
    z-index: 9999;
    line-height: 1.5;          
}


@media (min-width: 801px) {
    #rotateOverlay {
        display: none !important;
    }
}
