html {
  height: 100%;
  width: 100%;
}

body {
  height: 100%;
  width: 100%;
}

.landing-container {
  background-color: var(--gkk-teal);
  background-image: url("/graphics/pageDecoration/byFaerie/millefleurs-light-tile.png");
  background-size: 300px;
  background-repeat: repeat;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  color: var(--gkk-dark);
  text-align: center;
}

.pink-box {
  height: 75%;
  width: 75%;
  border-radius: 1rem;
  background-color: var(--gkk-pink);
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.pink-box .image-block {
  flex-grow: 1;
  overflow: hidden;
}

.image-container {
  flex-shrink: 1;
  height: 100%;
}
.image-container img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 100%;
  width: 100%;
  height: auto;
}

.enter-button {
  background-color: var(--gkk-teal);
  text-decoration: none;
  text-align: center;
  margin-inline: auto;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 4px double var(--gkk-pink);
  color: var(--gkk-dark);
  margin-top: 1.5rem;
}
.enter-button:hover {
  color: var(--gkk-light);
}