html {
  height: 100%;
}

body {
  background: #ede8e3;
  padding: 0;
  margin: 0;
  font-family: 'Gotham Book', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  min-height: calc(100vh - calc(100vh - 100%));
  min-height: -webkit-fill-available;
  min-height: fill-available;
}

.App-root {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: calc(100vh - calc(100vh - 100%));
  min-height: -webkit-fill-available;
  min-height: fill-available;
  overflow-x: hidden;
}

@keyframes pulse {
  5% {
    opacity: 100%;
  }
  20% {
    opacity: 0%;
  }  
}

.flower-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid #0057b7;
  padding: 0.5rem;
}

.flower-loader-petal {
  animation: pulse 2s ease infinite;
}

.flower-loader-petal-second {
  animation-delay: 0.2s;
}

.flower-loader-petal-third {
  animation-delay: 0.4s;
}

.flower-loader-petal-forth {
  animation-delay: 0.6s;
}

.flower-loader-petal-fifth {
  animation-delay: 0.8s;
}

.flower-loader-petal-sixth {
  animation-delay: 1s;
}