/* Agu.com.ar */

@font-face{
  font-family: 'AguFont';
  src: url('../fonts/SourceCodePro-LightItalic.ttf');
  src: url('../fonts/SourceCodePro-ExtraLightItalic.ttf');
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    margin:0px;
  }
  
  #main {
    position: absolute;
  }
  
  canvas {
    display: block;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    
  }
  #title{ 
    color: #ffffff;
    position: absolute;
    top: 0;
    
    z-index: 9999;
    margin:0px auto;
    padding: 1%;
    font-size: 4em;
    font-family: 'AguFont';
    font-weight: 400;
    
}

  
  canvas:first-child {
    position: static;
  }
  
  #controller {
    position: fixed;
    top: 0;
    right: 0;
  }
  
  
  #footer{
    z-index: 9999;
    color: #ffffff;

    position: absolute;
    bottom: 0;
    padding: 4px;
    width: 100%;
    
    text-align: center;
    border-top: 1px solid rgb(51, 153, 255);
    background-color: rgba(51, 153, 255, 0.15);
  }
  