body {
    font-family: "nunito", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #caf0f8;
    color: #03045e;
    line-height: 1.6;
}


.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.intro-text {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  text-align: center;
  padding: 10px 60px;
  color: #03045e; /* Change the color as needed */
  margin-bottom: 2rem;
}



.container {
    max-width: 700px;
    padding: 0 20px;
    text-align: center;
}



h1 {
    font-family: "quiche-flare", serif;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    margin-bottom: 40px;
    color: #03045e;
}

.prompt-output {
    background-color: #90e0ef;
    color: #0077b6;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.5);
    min-height: 80px;
}

.button {
    display: block;
    background-color: #0077b6;
    color: #fff;
    padding: 10px 20px;
    border: 0;
    cursor: pointer;
    margin: 0 auto;
    margin-bottom: 60px;
    margin-top: 10px;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.5);
}

.button:hover {
    background-color: #00b4d8;
}

input[type="text"] {
    width: 100%;
    padding: 8px 24px;
    background-color: #90e0ef;
    color: #03045e;
    border-radius: 16px;
    font-family: "nunito", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    margin: 10px 0;
    resize: none;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    box-sizing: border-box;
}

#user-response-input {
    font-family: "nunito", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #0077b6;
    background-color: #90e0ef;
    width: 90%;
    border-radius: 16px;
    outline: none;
    border: none;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 20px;
    box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.5);
}


/* Change the color of the placeholder text for textarea */
textarea::placeholder {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #00b4d8; /* Change this to the color you want */
  opacity: 1; /* Adjust the opacity if needed */
}



.success-message {
    margin: 20px 0;
}

.timer {
    font-size: 24px;
    font-weight: bold;
}


#copyToClipboard {
  display: block;
  background-color: #0077b6;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  margin: 0 auto;
  cursor: pointer;
  transition-duration: 0.4s;
  border-radius: 12px;
  box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.5);
}

#copyToClipboard:hover {
  background-color: #00b4d8;
}
