* {
  font-family: "Comic Relief";
}

#buttonMeow {
  font-size: clamp(8px, 2vw + 1rem, 24px);
}


body {
  background-image: url(assets/catBG.svg);
  background-color: #F1C40F;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-position: 0 0;
  animation: movePattern 30s linear infinite;
  background-size: 300px 300px;
}

.content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.textHeader {
  text-align: center;
  font-size: clamp(16px, 5vw + 1rem, 100px);
  font-weight: bold;
  color: white;
  -webkit-text-stroke: clamp(3px, 1vw + 0.5rem, 0.2px);
  -webkit-text-stroke-color: black;
}

.generate {
  display: flex;
  justify-content: center;
}

#catContainer {
  width: 90vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  margin: 30px;
}

#catImage {
  width: auto;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 5px;
}

@keyframes movePattern {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 50% 0;
  }

  100% {
    background-position: 100% 0;
  }
}