body {
  margin: 0;
  height: 100%;
  background: #FBFDFA;


  background-size: 100% 100%;
}


.center {
  font-family: Poppins;
  font-size: xx-large;
  size: 48;
  margin: 0;
  position: absolute;
  color: #101010;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.contain {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stretch {
  display: block;
  width: 100%;
  height: 100%;
}

.cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (prefers-color-scheme: dark) {
  body {
    margin: 0;
    height: 100%;
    background: #101010;

    background-size: 100% 100%;
  }

  .center {
    color: #E1E3E0;
    font-family: Poppins;
    size: 48;
  }
}