body {
  background-image: url("img/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh; /* Full viewport height */
}

#header1_box {
  background-color: #fce3e7;
  border: 5px solid #fcb3be;
  border-radius: 2pc;
  width: 60%;
  padding: 1vh;
  margin-top: 50px; /* Add padding to ensure the box grows with content */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center; /* Center the text */
  box-sizing: border-box; /* Include padding in the element's total width and height */
}

#header2_box {
  background-color: #fce3e7;
  border: 5px solid #fcb3be;
  border-radius: 2pc;
  width: 60%;
  padding: 1vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 20%;
  text-align: center; /* Center the text */
  box-sizing: border-box; /* Include padding in the element's total width and height */
}

h1 {
  color: #fd7388;
  font-size: 23px;
}
#auswahl {
  width: 95%;
  margin-top: 50px; /* Add padding to ensure the box grows with content */
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center; /* Center the text */
  box-sizing: border-box; /* Include padding in the element's total width and height */
}

#auswahl2 {
  width: 95%;
  margin-top: 50px; /* Add padding to ensure the box grows with content */
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center; /* Center the text */
  box-sizing: border-box; /* Include padding in the element's total width and height */
}

button {
  background-color: #fee2e4;
  color: #fd7388;
  width: 200px;
  height: 50px;
  border: 3px solid #fd7388;
  padding: 5px 10px;
  margin: 15px;
  cursor: pointer;
  border-radius: 20px;
  font-size: 16px;
}

#catgif {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  margin: auto;
  text-align: left; /* Align the text to the left */
  box-sizing: border-box; /* Include padding in the element's total width and height */
}

#catgif p {
  color: #fd7388;
  text-align: left; /* Ensure the text is aligned to the left */
  margin-bottom: 10px; /* Add some space between the text and the gif */
}

#catgif img {
  width: 100%;
  border: 5px solid #fd7388;
  border-radius: 20px;
}

#gungif {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  margin: auto;
  text-align: left; /* Align the text to the left */
  box-sizing: border-box; /* Include padding in the element's total width and height */
}

#gungif img {
  width: 80%;
  border: 5px solid #fd7388;
  border-radius: 20px;
}

#header3_box {
  background-color: #fce3e7;
  border: 5px solid #fcb3be;
  border-radius: 2pc;
  width: 60%;
  padding: 1vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 20%;
  text-align: center; /* Center the text */
  box-sizing: border-box; /* Include padding in the element's total width and height */
}

#yippy_gif {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  margin: auto;
  text-align: left; /* Align the text to the left */
  box-sizing: border-box;
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

.flower {
  position: absolute;
  font-size: 5rem;
  animation: wiggle 2s infinite;
}

#flower-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh;
  overflow: hidden; /* Prevent flowers from overflowing */
}
