* {
  padding: 0;
  margin: 0;
  font-family: ShopifySans, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}

body {
  background-color: #fbf7ed;
}

img {
  width: 100%;
}

.profile {
  text-align: center;
  color: #004c3f;
}

.profile h2 {
  letter-spacing: 1.5px;
  line-height: 2;
  font-weight: normal;
}

.info {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.info a {
  color: #004c3f;
  text-decoration: none;
}

.info a:hover {
  border-bottom: 1px solid #004c3f;
}
.index {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 80px;
}

h1 {
  padding: 100px 0 20px 0;
  color: #004c40;
  font-weight: normal;
  font-size: 20px;
}

textarea {
  width: 100%;
  border-radius: 4px;
  outline: none;
  padding: 16px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

textarea:focus {
  outline: 1px solid #018060;
}
::placeholder {
  font-size: 16px;
  letter-spacing: 0.5px;
}

.btn {
  display: flex;
  justify-content: flex-end;
}

button {
  width: 100px;
  height: 40px;
  border: none;
  background-color: #018060;
  color: white;
  border-radius: 3px;
  margin-left: auto;
  margin-top: 5px;
  cursor: pointer;
  letter-spacing: 1px;
  font-size: 15px;
  box-shadow: 0 5px 15px 0 rgb(0 0 0 / 15%);
  font-weight: 600;
}

button:hover {
  background-color: #004c3f;
}

h3 {
  padding: 20px 0;
  color: #004c40;
}

.item {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 30px;
  margin-top: 50px;
  margin-bottom: 30px;
  width: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.prompt,
.response {
  display: flex;
  flex-wrap: wrap;
  line-height: 2;
}
.prompt p:first-child,
.response p:first-child {
  min-width: 25%;
  font-weight: 600;
  letter-spacing: 1px;
}

.prompt p:nth-child(2),
.response p:nth-child(2) {
  width: 75%;
  letter-spacing: 0.5px;
}
