@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&display=swap");

html,
body,
#content {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

#ageForm {
  display: none;
}
#ageForm input {
  min-width: 18em;
}

#content {
  display: none;
}

#image-slider {
  width: 100%;
  height: 100%;
}

#image-slider .splide__track,
#image-slider .splide__list,
#image-slider .splide__slide {
  height: 100%;
}

#image-slider .splide__slide {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}

.slide1 {
    background: linear-gradient(217deg, #fec4b6, #f1b0da);
}
.slide2 {
    background: linear-gradient(110deg, #f76f8e, #a2d2ff);
}
.slide3 {
    background: linear-gradient(31deg, #9f9fed, #e6d1ff);
}
.slide4 {
    background: linear-gradient(217deg, #baf3d1, #fffec2);
}

.image-of-the-week {
  display: block;
  margin: auto;
  padding: 32px;
  background: white;
  border-radius: 12px;
  box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.12);
}

.image-of-the-week-label {
  display: block;
  text-align: center;
  font-size: 2em;
  font-family: "Comfortaa", cursive;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4em;
  color: rgba(0, 0, 0, 0.54);
}

.splide__pagination__page {
    background: rgba(0,0,0,0.54);
}
.splide__pagination__page.is-active {
    opacity: 1;
}
