body, html {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
  position: absolute;
  height: 100%;
  width: 100%;
}

.buttonWrapper {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: right;
  gap: 1rem;
  width: 100%;
  z-index: 10;
  padding: 2rem;
  box-sizing: border-box;
}
.buttonWrapper button {
  cursor: pointer;
  text-transform: lowercase;
  font-size: 1.4rem;
  background-color: white;
  padding: 0.8rem 1.4rem 0.9rem;
  border: none;
  border-radius: 2rem;
}
.buttonWrapper button.blue {
  background-color: blue;
  color: white;
}

.imagesWrapper {
  width: 100%;
  height: 100%;
}
.imagesWrapper .imageHolder {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
}
.imagesWrapper .imageHolder.active {
  opacity: 1;
}

.loaderWrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.loaderWrapper.active {
  opacity: 1;
}

.lds-ring {
  /* change color here */
  color: white;
}

.lds-ring,
.lds-ring div {
  box-sizing: border-box;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 160px;
  height: 160px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 128px;
  height: 128px;
  margin: 8px;
  border: 16px solid currentColor;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */