
body {
    margin: 0;
    padding: 0;
    background-color: #FFFCF0;
}

.img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader.hidden {
  display: none;
}
