@font-face {
  font-family: "comfortaaBold";
  src: url("../fonts/Comfortaa-Bold.ttf");
}

.titulo-splash-screen{
  font-family: 'comfortaaBold';
}


body #splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
  }

  body .incubant {
    background-color: #f7e8d680;
    color: #F9FAFB;
  }

  body .pollocoa {
    background-color: #a0c0f380;
    color: #F9FAFB;
  }

  
  body #splash-screen img {
    width: 300px;
    max-width: 300px;
    margin-bottom: 25px;
  }
  
  body #splash-screen .spinner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    width: 70px;
  }
  
  body #splash-screen .spinner-polloca > div {
    width: 25px;
    height: 25px;
    background-color: #0044d8;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1s infinite ease-in-out both;
    animation: bouncedelay 1s infinite ease-in-out both;
  }
  body #splash-screen .spinner-incubant > div {
    width: 25px;
    height: 25px;
    background-color: #db8718;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1s infinite ease-in-out both;
    animation: bouncedelay 1s infinite ease-in-out both;
  }
  
  body #splash-screen .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
  }
  
  body #splash-screen .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
  }
  
  @-webkit-keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
  }
  
  @keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
  }
