@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;200;300;400;500;600;700&display=swap");

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

.main {
  min-height: 100vh;
  position: relative;
  width: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main .image-container {
  padding: 10px;
}

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

.main .image-container .image img {
  width: 350px;
  align-items: center;
}

.main .image-container h1 {
  color: #00bcd4;
  text-align: center;
  margin-bottom: 10px;
  font-size: 40px;
}

.main .image-container p {
  color: #324042;
  text-align: center;
  margin-bottom: 40px;
}

.main .input {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40vw;
  height: 50px;
  border-radius: 20px;
  background: rgb(202 253 255 / 50%);
}

.main .input .talk {
  background: transparent;
  outline: none;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  cursor: pointer;
}

.main .input .talk i {
  font-size: 20px;
  color: #aed0d0;
}

.main .input .content {
  color: #aed0d0;
  font-size: 15px;
  margin-right: 20px;
}

.text-input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.text-input {
  width: 30vw;
  height: 40px;
  border-radius: 10px;
  border: none;
  padding: 0 10px;
  font-size: 16px;
}

.send-text {
  background: #00bcd4;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-left: 10px;
  padding: 0 20px;
  height: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  /* Tablet view adjustments */
  .main .input {
    width: 60vw;
    height: 45px;
  }
  
  .text-input {
    width: 50vw;
  }
  
  .main .image-container .image img {
    width: 300px;
  }
  
  .main .image-container h1 {
    font-size: 35px;
  }
  
  .text-input {
    font-size: 15px;
  }
  
  .send-text {
    font-size: 15px;
    padding: 0 15px;
    height: 35px;
  }
}

@media (max-width: 768px) {
  /* Mobile view adjustments */
  .main {
    max-height: 300vh;
    padding: 20px;
  }

  .main .input {
    width: 90vw;
    height: 40px;
  }
  
  .text-input {
    width: 70vw;
    font-size: 14px;
  }
  
  .main .image-container .image img {
    width: 250px;
  }
  
  .main .image-container h1 {
    font-size: 30px;
  }
  
  .main .image-container p {
    margin-bottom: 20px;
  }
  
  .text-input {
    font-size: 14px;
  }
  
  .send-text {
    font-size: 14px;
    padding: 0 10px;
    height: 30px;
  }
}
