html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

canvas {
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
   
}
@media screen and (min-width:2880px) {
  .root{
    justify-content: flex-start;
  }
  
}
.loader-animation{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.waiting-animation{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.waiting-animation p{
font-weight: 500;
font-size: 24px;
line-height: 32px;
text-align: center;
color: #021021;

}
.waiting-animation span{
font-weight: 500;
font-size: 14px;
line-height: 20px;
text-align: center;
color: #8899B4;
max-width: 439px;
}
  @media screen and (max-width:600px) {
    .waiting-animation span{
    max-width: 90%;
    font-size: 12px;
    }
  } 