body {
    /* make the body fits our viewport */
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    background-color: #232323;
    
    /* hide scrollbars */
    overflow: hidden;
    box-sizing: border-box;
    font-family: 'Staatliches', cursive;
    letter-spacing: 2px;
  }

  h1{
    color: white;
    text-align: center;
    font-weight: normal;
    font-size: 48px;
  }
  
  #canvas {
    /* make the canvas wrapper fits the window */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
  }
  
  .plane {
    /* define the size of your plane */
    position: relative;
    width: 80vw;
    height: 80vh;
    margin: 0 auto;
    overflow: hidden;
    -webkit-box-shadow: 0px 20px 74px 3px rgba(0,0,0,1);
    -moz-box-shadow: 0px 20px 74px 3px rgba(0,0,0,1);
    box-shadow: 0px 20px 74px 3px rgba(0,0,0,1);
  }
  
  .plane img {
    /* hide the img element */
    display: none;
  }
  .plane video{
    visibility: hidden;
  }
  
  /*** in case of error show the image ***/
  
  .no-curtains .plane {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .no-curtains .plane img {
    display: block;
    max-width: 100%;
    object-fit: cover;
  }

  audio{
    display: none;
  }