/* body{
    margin:0px;
    padding: 0px;
    box-sizing: border-box;   
    font-family: Arial, Helvetica, sans-serif;
} */
.loadgo-wrapper {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.966);
}
.logo-container {
  width: 170px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#my-image {
  width: 100%;
  height: 100%;
}
#my_id {
  font-weight: bold;
  font-size: 16px;
}
.disappear {
  display: none;
  animation: animate 0.4s linear forwards !important;
}
@keyframes animate {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.glow {
  animation: animate2 3s ease-out forwards;
}
/* @keyframes animate2{
    0%{
        filter: drop-shadow(0 0 0 crimson);
    }
    20%{
        filter: drop-shadow(0 0 10px rgb(247, 99, 1));
    }
    40%{
        filter: drop-shadow(0 0 10px rgb(248, 10, 2));
    }
    60%{
        filter: drop-shadow(0 0 10px rgb(27, 10, 182));
    }
    80%{
        filter: drop-shadow(0 0 10px rgb(215, 230, 6));
    }
    100%{
        filter: drop-shadow(0 0 0 crimson);
    }
} */
@keyframes animate2 {
  0% {
    transform: scale(1);
    filter: hue-rotate(0turn);
  }
  /* 35%{
        filter: hue-rotate(2.142rad);
    } */
  50% {
    filter: hue-rotate(3.142rad);
    transform: scale(1.02);
  }
  /* 65%{       
        filter: hue-rotate(2.142rad);
    } */
  100% {
    transform: scale(1);
    filter: hue-rotate(0turn);
  }
}
