@font-face {
    font-family: 'Consolas';
    src: url('/Fonts/Consolas.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

body {
  font-family: 'Consolas';
  background-image: url("Assets/purple-stars-bg.gif");
  text-align: center;
  color: white;
}

.dotted {
  border-top: 3px dotted #bbb;
}

.gif-wrapper {
  align-self: flex-start;
  width: 25%;
  position: relative;
  height: 0;
  padding-bottom: 9.1%
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.cascading-gif {
  display: none; 
  opacity: 0;    
  
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  
}

.cascading-gif.is-visible {
  display: block;
  animation: fadeIn 0.5s ease-out forwards;
}