
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
} 

body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    background-color:#E4E4E4;
    /*background-image:linear-gradient(to bottom, #5a5555  0%, #888888  51%);*/
    font-family: system-ui, -apple-system, -apple-system-font, 'Segoe UI', 'Roboto', sans-serif;
    font-size:12px;
    height:100vh;
    margin:0px;
    padding:0px;
    /* Padding to avoid the "unsafe" areas behind notches in the screen */
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
    width:100%;
  }
 
#deviceready.ready .event.listening { display: none; }
#deviceready.ready .event.received { display: block; }

@keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}

.blink {
    animation:fade 3000ms infinite;
    -webkit-animation:fade 3000ms infinite;
}

    @media screen and (prefers-color-scheme: dark) {
        body {
        /*    background-image:linear-gradient(to bottom, #585858 0%, #1B1B1B 51%);*/
        }
    } 

  @media (orientation: landscape) {

    .auto{
        text-align: center;
        margin-top: 50%;
    }

    .imgauto{
        width: 60%;
    }
  }
  
  @media (orientation: portrait) {

    .auto{
        text-align: center;
        margin-top: 30%;
    }

    .imgauto{
        width: 60%;
    }
  }


  @font-face {
    font-family: 'Audiowide';
    src: url('../fonts/Audiowide-Regular.ttf'); 
}
  @font-face { 

    font-family: 'Game';
    src: url('../fonts/04b_30/04B_30__.TTF'); 
}
  @font-face { 

    font-family: 'Helloria';
    src: url('../fonts/helloria/Helloria.ttf');
}
  @font-face { 
    font-family: 'Duo';
    src: url('../fonts/duo.woff2');
}

.map{
    width: 100vw;
    height: 100vw;
    border-radius: 10%;
    position: fixed!important;
}

.navbare {
    overflow: hidden;
    background-color: #333;
    position: fixed;
    bottom: 0;
    width: 100%;
  }

  /*
  .navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .navbar a:hover {
    background: #f1f1f1;
    color: black;
  }
  
  .navbar a.active {
    background-color: #4CAF50;
    color: white;
  }*/