* {
  user-select: none;
}


@font-face {
    font-family: 'CustomFont';
    src: url('custom-font.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body, html {
    font-family: 'CustomFont', sans-serif;
    background-color: black;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin-top: 10vh; */
}

.container img {
    width: 80%;
    height: auto;
}

.span {
    color: white;
    font-size: 2em;
    margin-top: 1em;
}

.dot {
    opacity: 0.3;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }
  
  .dot1 {
    animation-name: dot1Animation;
  }
  
  .dot2 {
    animation-name: dot2Animation;
    animation-delay: 0.5s;
  }
  
  .dot3 {
    animation-name: dot3Animation;
    animation-delay: 1s;
  }
  
  @keyframes dot1Animation {
    0%, 20%, 100% {
        opacity: 0.3;
    }
    10% {
        opacity: 1;
    }
  }
  
  @keyframes dot2Animation {
    0%, 20%, 100% {
        opacity: 0.3;
    }
    10% {
        opacity: 1;
    }
  }
  
  @keyframes dot3Animation {
    0%, 20%, 100% {
        opacity: 0.3;
    }
    10% {
        opacity: 1;
    }
  }
