/**
 * Screen sizes
 */
/**
  * Colors
  */
:root {
  --primary-color: #478cee;
  --secondary-color: #4fca92;
  --heading-font: system-ui;
  --body-font: system-ui;
}

.sentiment-title {
  margin-top: 5rem;
}
.sentiment-subtitle {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}
.sentiment-form-input {
  font-size: inherit;
  width: 100%;
  height: 20rem;
  border: 1px solid #dedede;
  padding: 0.375rem 0.5rem;
  border-radius: 5px;
  display: flex;
  align-items: start;
}
.sentiment-form-input:focus {
  border-color: #dedede;
}
.sentiment-form-submit {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  border: none;
  padding: 6px 12px;
  font-weight: 500;
  color: #fff;
  background-color: #478cee;
  cursor: pointer;
}
.sentiment-form-submit:hover {
  color: white;
  background: #4d546d;
  transition: 200ms ease;
}
