@font-face {
    font-family: 'NASA';
    src: url('/ExoJumpBuild/fonts/NASA.ttf') format('truetype'); /* Cambia el nombre del archivo según sea necesario */
    font-weight: normal;
    font-style: normal;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: "NASA";
  }
  
  .fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
  }
  
  .fondo-negro {  /*  Fondo principal del logo  */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: -1;
  }
  
  .fondo img {   /*LOGO */
    width: 50%;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 1500ms ease-in-out;
  }
  
  .fondo-desvanecer {
    opacity: 0;
  }