/* Estilos para texto e cabeçalhos */
.texto h1 {
  font-family: 'Inter';
  font-size: 36px;
  color: #8a604b;
  font-style: initial;
  text-align: left;
  margin-left: 22%;
}

.texto p {
  font-family: 'Inter';
  color: #5c5c5c;
  font-size: 20px;
  text-align: left;
  margin-left: 22%;
}

.history {
  background-color: #f2e7d8;
  border-radius: 8px;
  padding: 2px;
  margin: auto;
  min-width: 75%;
  max-width: 75%;
  height: 100%;
  justify-content: center;
  padding-bottom: 25px;
}

.historyTitle {
  transform: translateY(10px);
  display: flex;
  align-items: center;
  font-weight: bold;
  text-align: left;
  margin-left: 30px;
  font-size: 22px;
  color: #4b352a;
}

/* Estilo para texto dentro do histórico */
.text {
  font-size: 16px;
  font-family: 'Inter';
  margin-left: 30px;
  margin-right: 55px;
  color: #16100c;
  text-align: justify;
}

/* Estilos responsivos */
@media (max-width: 720px) {
  .history {
    min-width: 90%;
    max-width: 90%;
    padding: 10px;
  }

  .text {
    margin-left: 16px;
    margin-right: 16px;
  }

  .historyTitle {
    margin-left: 16px;
  }

  .texto h1 {
    font-size: 24px;
    text-align: left;
    margin-left: 1%;
  }

  .texto p {
    font-size: 16px;
    text-align: left;
    margin-left: 1%;
  }
}
