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

/* ANIMATED BACKGROUND */

.container {
  position: relative;
  z-index: 1; /* Ensures content is above the animated background */
}

* {
  font-family: "Kode Mono", monospace;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #101820;
}

.container {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title-container {
  color: #a9a9a9;
  /* border: 1px solid red; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  margin: 0;
  font-size: 30px;
  padding-bottom: 0px;
  cursor: pointer;
}

.title-container:hover {
  cursor: progress; /* Changes the cursor to a pointer to indicate the title is clickable */
  transition: color 0.3s ease; /* Smooth transition for color change */
  color: #cfa500; /* Change the title color on hover */
}

.sub-text {
  margin-top: 10px;
  color: #a9a9a9;
  display: flex; /* Use flexbox for layout */
  justify-content: center; /* Center children horizontally */
  align-items: center; /* Center children vertically */
  width: 50%;
  flex-wrap: wrap; /* Allow items to wrap to next line on small screens */
  background-color: rgba(31, 186, 0, 0.074); /* Red with 50% transparency */
  border-radius: 10px;
  padding: 10px 10px 0px 0px;
}

.sub-text .text,
.sub-text .img {
  flex: 1; /* Each child takes equal width */
  padding: 10px; /* Add some padding for spacing */
}

.sub-text .img {
  display: flex;
  justify-content: center; /* Center the image within its container */
}

.sub-text .img img {
  max-width: 100%; /* Ensure image is responsive and does not overflow its container */
  height: auto; /* Maintain aspect ratio */
  transition: transform 0.2s ease-in-out; /* Smooth transition for the transform property */
}

.sub-text .img img:hover {
  transform: scale(
    1.05
  ); /* Scale up the image to 105% of its original size on hover */
}

/* slider */

.button {
  color: #000000;
  background-color: #00a400;
  font-size: 150px;
  border: 0px;
  border-radius: 10px;
  padding: 10px;
  font-weight: bold;
  transition: transform 0.2s ease, background-color 0.3s ease; /* Smooth transition for transform and background color */
  cursor: pointer; /* Changes the cursor to a hand when hovering over the button */
}

.button:hover {
  transform: scale(1.05); /* Slightly increases size on hover */
  background-color: #009400; /* Slightly darker green on hover */
}

.button:active {
  transform: scale(0.95); /* Slightly reduces size when clicked */
}

.button-div {
  /* border: 1px solid red; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.ai-text {
  color: #a9a9a9;
  /* border: 1px solid red; */
  margin-top: 20px;
  font-size: 30px;
}

.confetti {
  position: fixed; /* Use fixed to position relative to the viewport */
  width: 20px; /* Larger width */
  height: 20px; /* Larger height */
  border-radius: 50%;
  pointer-events: none;
  z-index: 2; /* Ensure confetti is above other content */
}


