﻿html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
        background-color:lightgoldenrodyellow;
/*    background-color: red;*/
}

#viewport {
    width: 100vw;
    height: 100vh;
    /*    background: #111;*/
    background-color: lightgoldenrodyellow;
/*    cursor: grab;*/
    overflow: hidden;
    position: relative;
    display:none;
}

#crossword, #grid {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    user-select: none;
    pointer-events: none;
/*    z-index:100;*/
}

#grid {
    pointer-events: none;
}

#settings {
   display:flex; 
   flex-direction:row;
   display:none;
   
}

.msg {
    margin-bottom: 6px;
    padding: 6px 8px;
    background: #f3f3f3;
    border-radius: 6px;
}

