body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Montserrat, Helvetica, 'sans-serif';
}

.splash-screen-holder img {
  width: 100px;
  padding:25px;
}

@media(max-width: 768px) {
  .splash-screen-holder img {
    width: 100px;
    padding: 10px;
  }

  .splash-screen-holder .text {
    padding: 35px 15px !important;
  }
}

.splash-screen-holder {
  background:#fff;
  display:flex;
  flex-flow: row wrap;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
  overflow:hidden;
  border-radius:20px;
}



.splash-screen-holder > * {
  flex: 100%;
}

.splash-screen-holder .text {
  background-color:#0071BC;
  padding:50px;
  color:#fff;
  text-align:center;
  font-size:20px;
}

#root {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}


.logo-holder {
  display:flex;
  align-items: center;
  justify-content: center;
}


.logo-holder img {
  transform: scale(1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.7);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.7);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
