@font-face {
        font-family: dinot;
        font-weight: regular;
        src: url("../font/DINOT-Regular.ttf") format("truetype");
        }
        
      html, body {
        font-family: 'dinot', 'regular';
        margin: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-color: black;
      }

      a:link, a:visited{
        color: #bdc3c7;
      }

      .credit{
        position: absolute;
        text-align: center;
        width: 100%;
        padding: 20px 0;
        color: #fff;
      }
        
        #progress {
            width: 0;
            height: 5px;
            position: fixed;
            top: 0;
            background: #fff;
            -webkit-transition: opacity 0.5s ease;
            transition: opacity 0.5s ease;
        }

        #progress.finish {
          opacity: 0;
        }

        #bar {
          background-color: #fff;
          height: 100%;
          transition: width 0.1s ease;
        }

        #bar.hide {
          opacity: 0;
          transition: opacity 1s ease;
        }
        
        #typed {
        color: #fff;
        text-shadow: 0px 0px 2px #000;
        font-size: 50pt;
        font-family: 'dinot', 'regular';
       }
        
        #dialog {
        position: absolute;
        top: 400px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
      }

        #container {
            width: 100%;
            height: 100%;
            z-index: 2;
        }
        
        #animTitle {
            z-index: 3;
            position: absolute;
            bottom: 0;
            left: 0;
            animation: FadeIn 10s;
            opacity: 0;
            pointer-events: none;
            cursor: default;
        }
        span.title {
            font-family: 'dinot', 'regular';
            color: white;
            text-shadow: 2px 2px 8px black;
            text-transform: uppercase;
            font-size: 400%;
            -webkit-user-select: none;         
            -moz-user-select: none;
            -ms-user-select: none; 
            user-select: none;    
        }

        span.mainTitle {
            font-family: 'dinot', 'regular';
            color: white;
            text-shadow: 2px 2px 8px black;
            font-size: 4.0em;
            -webkit-user-select: none;         
            -moz-user-select: none;
            -ms-user-select: none; 
            user-select: none;    
        }

        .mainTitle {
            position: absolute;
            left: 0;
            top: 25%;
            width: 100%;
            text-align: center;
            font-size: 18px;
        }

        
            @-webkit-keyframes FadeIn {
        0% {
                opacity: 0;

            }
        10%  {
                opacity: 1;
           
            }
        90% {
            opacity:1;
     
            }
        100% {
            opacity:0;
            z-index: 1;
            }

        }

    #loading {
        position: absolute;
        pointer-events: none;
        cursor: default;
        left: 0;
        top: 50%;
        width: 100%;
        text-align: center;
        font-size: 40pt;
        color:white;
    }

    .nextbut {
            position: absolute;
            right: 10px;
            top: 50%;
            cursor: pointer;
            }
    .backbut {
            position: absolute;
            left: 10px;
            top: 50%;
            cursor: pointer;
    }
    
    #Branding {
        Z-index: 2;
        background: Transparent none repeat scroll 0% 0%;
        opacity: 0.9;
        position: absolute;
        top: 10px;
        left: 10px;
    
    }
    .a-enter-vr-button { 
        background: transparent;
        background-image: url("../img/icon/vr-icon.png");
        background-repeat: no-repeat;
        background-color: transparent;
        padding-right: 0px;
        padding-top: 0px;
        min-width:32px;
        min-height:32px;
      }
      .a-enter-vr{ 
        right: 20px;
        bottom: 10px;
        width:32px;
        height:32px;
      }
      .a-enter-vr-button:hover{
        background-color: transparent;
        -webkit-transform: scale(1.2,1.2);
        transform: scale(1.2,1.2);
      }
    @media (pointer: fine){
        .a-enter-vr-button{
            background-image: url("../img/icon/fullscreen.png");
        } 
    }

    #viewer {
      margin: 3em auto;
      display: flex;
      flex-direction: column;
      max-width: 600px;
      border-radius: 6px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
      overflow: hidden;
    }
    model-viewer {
      display: flex;
      width: 100%;
      height: 100%;
      background-color: #70BCD1;
      --poster-color: #ffffff00;
    }