*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

:root{
  --highlight-color: #ff5945;
  --container-color: #f2f8fc;
}

body{
  background: linear-gradient(to left, #bc3800, #dd8100);
}

.container{
  width: 100%;
  max-width: 740px;
  padding: 40px 30px 10px;
  margin: 50px auto 20px;
  background: var(--container-color);
  border: 0.5rem solid var(--highlight-color);
  border-radius: 10px;
  position: relative;
}

.container h2{
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1%;
  text-align: left;
}

.container p{
  margin-bottom: 1rem;
}

#promo a{
  text-decoration: none;
  color: black;
}

#promo a:hover{
  color: var(--highlight-color);
}

.container textarea{
  flex: 1;
  width: 100%;
  font-size: 16px;
  outline: none;
  padding: 10px;
  border: 3px solid var(--highlight-color);
  background: transparent;
  min-height: 400px;
}

.notes-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.notes-info-left {
  display: flex;
  align-items: center;
  gap: 5px;
}

.container button{
  border: none;
  outline: none;
  padding: 10px 30px;
  font-size: 16px;
  cursor: pointer;
  background: var(--highlight-color);
  color: var(--container-color);
}

#charCount {
  font-size: 14px;
  color: #666;
  margin-right: 15px;
}

.save-indicator {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 8px;
  background: var(--highlight-color);
  color: white;
  border-radius: 3px;
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.3s;
}

.save-indicator.show {
  opacity: 1;
}

/*bottom bar styling*/
.footer {
  font-size: 1rem;
  color: var(--container-color);
  height: 1.5rem;
  background: var(--highlight-color);
  text-align: center;
  position: fixed;
  width: 100%;
  bottom: 0;
  cursor: pointer;
}

.footer a{
  color: var(--container-color);
}

@media (max-width: 450px) {
  .container {
    width: 90%;
  }
}