@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  /* cursor: pointer; */
}

:root {
  --light: white;
  --dark: #3a3a3a;
  --gold: rgba(255, 170, 0, 0.828);
  --blue: #2eb1c2;
  --green: #04a126;
  --purple: #8c27eb;
  --orange: #ed490e;

}


body,
html {
  background: rgb(46, 153, 3);
  background: radial-gradient(circle, rgba(46, 153, 3, 1) 0%, rgba(126, 167, 8, 1) 51%, rgba(63, 154, 0, 1) 100%);
  background-size: auto 100vh;
  background: url("./images/trees.jpg");
  background-size: cover;
  background-position: 50% 60%;
  background-attachment: fixed;

  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  justify-content: space-between;
  align-items: center;
  -webkit-animation: delayReverse .3s ease-in;
  -moz-animation: delayReverse .3s ease-in;
  -ms-animation: delayReverse .3s ease-in;
  animation: delayReverse .3s ease-in;
}

.headerTitle {
  z-index: 100;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 66px;
  width: 800px;
  color: white;
  text-align: center;
  font-family: 'Orbitron', 'Poppins', 'Orbitron', sans-serif;
  font-size: 23px;
  letter-spacing: 7px;
}

#AI {
  font-family: 'Orbitron', sans-serif;
  color: rgb(179, 117, 2);
  font-size: 2rem
}

#o {
  font-family: 'Orbitron', sans-serif;
  color: rgb(255, 255, 255);
  font-size: 2rem
}

#G {
  font-family: 'Orbitron', sans-serif;
  color: black;
  font-size: 2rem
}

.input_txt {
  font-family: 'Poppins', 'Orbitron', sans-serif;

}

.chat-container {
  z-index: 1000;
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.images-section {
  position: absolute;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 7px;
  top: -2%;
  z-index: 3000;
}

.image-container {
  position: relative;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  top: 0%;
  border-radius: 15px;
  overflow: hidden;
}

.image-container img {
  max-width: 100%;
  max-height: 100%;
  border: 2px solid black;
}

input {
  z-index: 2000;
  border: none;
  background-color: rgba(220, 220, 220, 0.5);
  width: 200%;
  font-size: 20px;
  padding: 12px 15px;
  border-radius: 5px;
  box-shadow: rgb(0, 0, 0, 0.05) 0 56px 56px,
    rgb(0, 0, 0, 0.5) 0 -12px 30px,
    rgb(0, 0, 0, 0.5) 0 4px 7px,
    rgb(0, 0, 0, 0.5) 0 12px 3px,
    rgb(0, 0, 0, 0.5) 0 -3px 66px
}

input:focus {
  outline: none;
}

.input-container {
  position: relative;
  width: 100%;
  max-width: 800px;
}

.submit-icon {
  z-index: 4000;
  position: relative;
  text-align: right;
  bottom: 40px;
  color: whitesmoke;
  font-size: 2.5rem;
  padding-right: 12px;
  cursor: pointer;
}

#submit-icon:hover {
  color: black;
}

path,
svg {
  fill: rgb(90, 153, 131);
  border: 2px solid black;
  z-index: 23;

}

.input-container #submit-icon {
  z-index: 600;
  position: absolute;
  right: 23px;
  bottom: 25px;
  cursor: pointer;
}

button {
  border: solid 0.5px rgba(255, 255, 255, 0.5);
  background-color: transparent;
  border-radius: 5px;
  padding: 10px;
  margin: 10px;

}

.svgWave {
  position: absolute;
  width: auto;
  bottom: 0;
}

canvas {
  z-index: 0;
  width: 100%;
}

canvas[resize] {
  z-index: 0;
  width: 100%;
  height: 50%;
}