.container {
  max-width: 1184px;
}

#content {
  text-align: center;
  margin-bottom: 30px;
}

#head {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;
  border-radius: 12px;
  color: #fff;
}

h1 {
  font-size: 45px !important;
  font-weight: 700 !important;
  margin-bottom: 10px;
  color: #fff !important;
}

.sub-title {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* INPUT */
.input-card {
 background: #f9f9f9;
    border: 1px solid #f3c6cf;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
}

#textInput {
  width: 100%;
    min-height: 90px;
    border-radius: 10px;
    border: 1px solid #f3c6cf;
    padding: 14px;
    font-size: 16px;
    outline: none;
    resize: none;
    background: #fff;
    transition: 0.2s ease;
}
#textInput:focus{
	border-color:#e91e63;
	box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.15);
}

/* BOX */
.box {
  position: relative;
  background: #eaeaea;
  padding: 30px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  text-align: center;
  font-size: 28px;
  min-height: 90px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.text {
  white-space: pre-wrap;
  word-break: break-word;
}

/* COPY */
.copy {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 18px;
  color: #666;
  transition: .3s;
}

.copy:hover {
  color: #111;
  transform: scale(1.15);
}

.copy.copied {
  color: green;
}

/* MOBILE */
@media(max-width:768px){
  h1{
    font-size:32px !important;
  }

  .box{
    font-size:20px;
    min-height:70px;
  }
}