* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: poppins, "Courier New", Courier, monospace;
}

body {
  height: 100vh;
  width: 100vh;
  background: linear-gradient(rgb(60, 160, 254), #0d68f1);
}

.container {
  max-width: 600px;
  margin: 10%;
}

h1 {
  color: white;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

h1 img {
  width: 40px;
  margin-right: 5px;
}

button {
  background: linear-gradient(#f003f0, purple);
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: white;
  padding: 5px 10px;
  border-radius: 30px;
  border: none;
  outline: none;
}

button img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

button:hover {
  background: linear-gradient(#ec05ec, #5c015c);
  cursor: pointer;
}

.input-box {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 110px;
  background: rgba(255, 255, 255, 0.7);
  color: #000;
  padding: 20px;
  margin: 20px 0;
  outline: none;
  border-radius: 10px;
}

.input-box img {
  width: 29px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  cursor: pointer;
}

/* Styles for mobile devices with a max width of 768px */
@media (max-width: 768px) {
 .input-box{
  max-width: 250px;
  min-height: 150px;
 }
}