#introContainer {
  display: flex;
  width: 100%;
  height: 100%;
  background-image: url('../images/introBackground.webp');
  background-size: cover;
  background-position: center;
  background-color:floralwhite;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
  align-items: center;
  padding: 15px;
  gap: 15px;
}

#introImage {
  border-radius: 10%;
  animation-delay: 0.5s;
  animation-duration: 2s;
  animation-name: zoomAndFadeIn;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  max-height: 100%;
  height: auto;
  margin: auto;
  opacity: 0;
}

#languageSelection {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}

#languageSelection button {
  white-space: nowrap;
  padding: 10px 40px;
  width: auto;
}

#credits {
  font-family: 'buttonFont';
  font-size: 12px;
  margin: 10px;
  opacity: 0.7;
  white-space: nowrap;
  /*overflow-x: hidden;*/
  animation-name: pan;
  animation-duration: 25s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  width: auto;
}

@keyframes zoomAndFadeIn {
  0% {
      opacity: 0;
      max-width: 70%;
      max-height: 70%;
  }
  100% {
      opacity: 1;
      max-width: 100%;
      max-height: 100%;
  }
}

@keyframes pan {
  0% {
    transform: translateX(calc(50vw + 50%));
  }
  100% {
    transform: translateX(calc(-50vw - 50%));
  }
}