  /* @font-face {
    font-family: 'Pointless';
    src: url('/assets/fonts/pointless.woff2') format('woff2');
  } */
  
  @keyframes fade-in-up {
    0% {
      opacity: 0;
      transform: translateY(15px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fade-in-bottom {
    0% {
      opacity: 0;
      transform: translateY(-15px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .uiHolder{
    display: flex;
    justify-content: center;
  }
  
  .ui {
    position: fixed;
    inset: 0;
    margin: auto;
    justify-content: center;
    width: 80%;
    height: 80%;
    font-family: 'Pointless', sans-serif;
    font-size: 20px;
    color: #fff;
    z-index: 10;
    pointer-events: none;

}
.ui *,
.ui *::before,
.ui *::after {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.board {
    position:relative;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgba(0, 72, 114, 0.8); 
}
  
    /* Animations */
  /* .board::before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.7;
  } */

  .coupon-info{
    margin-top: 10px;
    margin-bottom: 40px;
  }
  .coupon__id {
    text-transform: uppercase;
    font-size: 3rem;
    text-shadow: 0 0 4px #00cfff;
    margin-bottom: 15px;
    animation-delay: 0.1s;
    opacity: 0;
    animation-name: fade-in-up;
    animation-duration: 0.75s;
    animation-fill-mode: forwards;
  }

  .imagecontainer >img{
    margin-top: 20px;
    width: 40%;
  }
