*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
}

app-root {
  display: none;
}

#splashscreen {
  font-family: sans-serif;
  background-color: #f4f4fa;
  line-height: 1.5;
  color: #212529;
  position: absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#splashscreen > div {
  width: 50%;
  text-align: right;
}

#splashscreen > div > img {
  width: 100%;
  vertical-align: middle;
}

#splashscreen .spinner-border {
  margin-left: 10px;
}

#splashscreen #splash-message {
  font-size: 2vh;
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border .75s linear infinite;
  animation: spinner-border .75s linear infinite;
}
